Skip to content

Commit

Permalink
Don't include tmp vars
Browse files Browse the repository at this point in the history
  • Loading branch information
mondokm committed Aug 15, 2024
1 parent 84e37c2 commit fbc035d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ public XSTS(final Set<VarDecl<?>> ctrlVars,
this.ctrlVars = ctrlVars;

final Set<VarDecl<?>> tmpVars = Containers.createSet();
tmpVars.addAll(StmtUtils.getVars(tran));
tmpVars.addAll(StmtUtils.getVars(env));
tmpVars.addAll(StmtUtils.getVars(init));
// tmpVars.addAll(StmtUtils.getVars(tran));
// tmpVars.addAll(StmtUtils.getVars(env));
// tmpVars.addAll(StmtUtils.getVars(init));
tmpVars.addAll(ExprUtils.getVars(initFormula));
tmpVars.addAll(ExprUtils.getVars(prop));
this.vars = Collections.unmodifiableCollection(tmpVars);
Expand Down

0 comments on commit fbc035d

Please sign in to comment.