Skip to content

Commit

Permalink
[PSym] enable symbolic state caching by default
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-goel committed Aug 1, 2023
1 parent 3ad545a commit 572cb66
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class PSymConfiguration implements Serializable {
// whether or not to allow sync events
@Getter @Setter boolean allowSyncEvents = true;
// mode of state hashing
@Getter @Setter StateCachingMode stateCachingMode = StateCachingMode.None;
@Getter @Setter StateCachingMode stateCachingMode = StateCachingMode.Symbolic;
// symmetry mode
@Getter @Setter SymmetryMode symmetryMode = SymmetryMode.None;
// use backtracking
Expand Down Expand Up @@ -102,7 +102,7 @@ public boolean isChoiceOrchestrationLearning() {

public void setToSymbolic() {
this.setStrategy("symbolic");
this.setStateCachingMode(StateCachingMode.None);
this.setStateCachingMode(StateCachingMode.Symbolic);
this.setUseBacktrack(false);
this.setChoiceOrchestration(ChoiceOrchestrationMode.None);
this.setTaskOrchestration(TaskOrchestrationMode.DepthFirst);
Expand Down

0 comments on commit 572cb66

Please sign in to comment.