Skip to content

Commit

Permalink
Made Tipeable.
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-phd committed Sep 14, 2023
1 parent ea008cb commit 1db9387
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,10 @@ import InceptionPlugin._
reporter.error(step.claim.posOpt, Logika.kind, st"Could not derive the stated claim from $id's $conc${if (ensures.size > 1) "s" else ""}".render)
return emptyResult
}
val (status, nextFresh, claims, claim) = if (logika.config.mode == Config.VerificationMode.SymExe)
logika.evalRegularStepClaim(smt2, cache, state, step.claim, step.id.posOpt, reporter)
else logika.evalRegularStepClaimRtCheck(smt2, cache, F, state, step.claim, step.id.posOpt, reporter)
val (status, nextFresh, claims, claim): (B, Z, ISZ[State.Claim], State.Claim) =
if (logika.config.mode == Config.VerificationMode.SymExe)
logika.evalRegularStepClaim(smt2, cache, state, step.claim, step.id.posOpt, reporter)
else logika.evalRegularStepClaimRtCheck(smt2, cache, F, state, step.claim, step.id.posOpt, reporter)
if (status && logika.config.detailedInfo) {
val (ePos, ensure, tensure) = ePosExpTExpOpt.get
evidence = evidence :+
Expand Down

0 comments on commit 1db9387

Please sign in to comment.