Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
fixed path
Browse files Browse the repository at this point in the history
  • Loading branch information
lausdahl committed Jan 26, 2020
1 parent 3c7e956 commit 73f50f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-program/src/main/java/org/intocps/maestro/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ public static void main(String[] args) throws AnalysisException {
list.getBody().add(f.newVariableDecl(tankDecl, f.newNamedType("fmi2"), null));
list.getBody().add(f.newVariableDecl(ctrlDecl, f.newNamedType("fmi2"), null));

list.getBody().add(new ALoadStm(f.newStringLiteral(new File("/src/main/resources/watertankcontroller-c/binaries/darwin64" +
list.getBody().add(new ALoadStm(f.newStringLiteral(new File("src/main/resources/watertankcontroller-c/binaries/darwin64" +
"/watertankcontroller-c.dylib").getAbsolutePath()), f.newIdentifierExp("fmi2"),
new ATupleIdentifierExp(Arrays.asList(f.newIdentifierExp("errorCode"), f.newIdentifierExp(ctrlDecl)))));

list.getBody().add(new ALoadStm(f.newStringLiteral(new File("/Users/kgl/data/au/into-cps-association/maestroV2/test-program/src/main" +
list.getBody().add(new ALoadStm(f.newStringLiteral(new File("src/main" +
"/resources" +
"/singlewatertank-20sim/binaries/darwin64/singlewatertank-20sim.dylib").getAbsolutePath()), f.newIdentifierExp("fmi2"),
new ATupleIdentifierExp(Arrays.asList(f.newIdentifierExp("errorCode1"), f.newIdentifierExp(tankDecl)))));
Expand Down

0 comments on commit 73f50f4

Please sign in to comment.