forked from JavaTX/JavaCompilerCore
modified: ../../../../../test/javFiles/Matrix.jav
modified: ../../../../../test/typeinference/UnifyTest.java
This commit is contained in:
parent
ec2b501e63
commit
4738add4fc
@ -17,9 +17,9 @@ class Matrix extends Vector<Vector<Integer>> {
|
|||||||
var erg = 0;
|
var erg = 0;
|
||||||
var k = 0;
|
var k = 0;
|
||||||
while(k < v1.size()) {
|
while(k < v1.size()) {
|
||||||
erg = erg + v1.elementAt(k) * m.elementAt(k).elementAt(j);
|
//erg = erg + v1.elementAt(k) * m.elementAt(k).elementAt(j);
|
||||||
//erg = add1(erg, mul1(v1.elementAt(k),
|
erg = add1(erg, mul1(v1.elementAt(k),
|
||||||
// m.elementAt(k).elementAt(j)));
|
m.elementAt(k).elementAt(j)));
|
||||||
k++; }
|
k++; }
|
||||||
v2.addElement(new Integer(erg));
|
v2.addElement(new Integer(erg));
|
||||||
j++; }
|
j++; }
|
||||||
|
@ -28,12 +28,12 @@ public class UnifyTest {
|
|||||||
public void finiteClosure() throws IOException, ClassNotFoundException {
|
public void finiteClosure() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"fc.jav"));
|
execute(new File(rootDirectory+"fc.jav"));
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
@Test
|
@Test
|
||||||
public void lambda() throws IOException, ClassNotFoundException {
|
public void lambda() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"LambdaField.jav"));
|
execute(new File(rootDirectory+"LambdaField.jav"));
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
@Test
|
@Test
|
||||||
public void lambda2() throws IOException, ClassNotFoundException {
|
public void lambda2() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"Lambda2.jav"));
|
execute(new File(rootDirectory+"Lambda2.jav"));
|
||||||
@ -60,14 +60,14 @@ public class UnifyTest {
|
|||||||
public void facultyTyped() throws IOException, ClassNotFoundException {
|
public void facultyTyped() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"FacultyTyped.jav"));
|
execute(new File(rootDirectory+"FacultyTyped.jav"));
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void matrix() throws IOException, ClassNotFoundException {
|
public void matrix() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"Matrix.jav"));
|
execute(new File(rootDirectory+"Matrix.jav"));
|
||||||
//JavaTXCompiler compiler = new JavaTXCompiler(new File(rootDirectory+"Matrix.jav"));
|
//JavaTXCompiler compiler = new JavaTXCompiler(new File(rootDirectory+"Matrix.jav"));
|
||||||
//compiler.generateBytecode();
|
//compiler.generateBytecode();
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
@Test
|
@Test
|
||||||
public void vector() throws IOException, ClassNotFoundException {
|
public void vector() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"Vector.jav"));
|
execute(new File(rootDirectory+"Vector.jav"));
|
||||||
|
Loading…
Reference in New Issue
Block a user