Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions saw-central/src/SAWCentral/Bisimulation.hs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ import SAWCentral.BisimulationTheorem
import SAWCentral.Builtins (unfold_term)
import SAWCentral.Options (Verbosity(..))
import SAWCentral.Panic (panic)
import SAWCentral.Proof
import SAWCentral.Proof hiding (applyTheorem)
import SAWCentral.Prover.Util (checkBooleanSchema)
import SAWCentral.Value

Expand Down Expand Up @@ -154,10 +154,10 @@ proveAll script ts = do
, goalName = "prove_bisim"
, goalLoc = show pos
, goalDesc = ""
, goalSequent = propToSequent prop
, goalProp = prop
, goalTags = mempty
}
res <- runProofScript script prop goal Nothing "prove_bisim" True False
res <- runProofScript script prop goal Nothing "prove_bisim" True
case res of
UnfinishedProof {} -> failProof res
ValidProof _ thm -> recordTheoremProof thm
Expand Down
Loading
Loading