Skip to content

Commit

Permalink
Revert "benchmarking mods"
Browse files Browse the repository at this point in the history
This reverts commit 67fc9a3.
  • Loading branch information
Dspil committed Sep 15, 2023
1 parent 67fc9a3 commit 1982e73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/rules/Brancher.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ object brancher extends BranchingRules {
/* True if the then-branch is to be explored */
val executeThenBranch = (
skipPathFeasibilityCheck
||{v.decider.prover.comment("branching!!!") ; !v.decider.check(negatedCondition, Verifier.config.checkTimeout())} || true)
|| !v.decider.check(negatedCondition, Verifier.config.checkTimeout()))

/* False if the then-branch is to be explored */
val executeElseBranch = (
!executeThenBranch /* Assumes that ast least one branch is feasible */
|| skipPathFeasibilityCheck
|| {v.decider.prover.comment("branching!!!") ; !v.decider.check(condition, Verifier.config.checkTimeout())} || true)
|| !v.decider.check(condition, Verifier.config.checkTimeout()))

val parallelizeElseBranch = s.parallelizeBranches && !s.underJoin && executeThenBranch && executeElseBranch

Expand Down

0 comments on commit 1982e73

Please sign in to comment.