Skip to content

Commit

Permalink
benchmarking mods
Browse files Browse the repository at this point in the history
  • Loading branch information
Dspil committed Sep 15, 2023
1 parent fa5810e commit 67fc9a3
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.check(negatedCondition, Verifier.config.checkTimeout()))
||{v.decider.prover.comment("branching!!!") ; !v.decider.check(negatedCondition, Verifier.config.checkTimeout())} || true)

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

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

Expand Down

0 comments on commit 67fc9a3

Please sign in to comment.