Skip to content

Commit

Permalink
Finalizing backward tests #120
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaneg committed Oct 9, 2023
1 parent 2543b47 commit 896d23b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ public void fixpoint(
Class<? extends WorkingSet<Statement>> fixpointWorkingSet,
FixpointConfiguration conf)
throws FixpointException {
if (conf.optimize)
LOG.warn("Optimizations are turned on: this feature is experimental with backward analyses");

// new fixpoint iteration: restart
this.results = null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public void testLiveness() {
DefaultConfiguration.defaultTypeDomain());
conf.testDir = "liveness";
conf.programFile = "liveness.imp";
conf.compareWithOptimization = false;
perform(conf);
}
}

0 comments on commit 896d23b

Please sign in to comment.