Skip to content
Snippets Groups Projects
Commit ef01ce84 authored by Rishabh Iyer's avatar Rishabh Iyer
Browse files

Fix (possibly irrelevant) typo in Lab03

parent cbf6dc67
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ object Lab03 {
}.ensuring(evaluate(env, instantiation(f, id, value)).isDefined)
/* The case analysis proof step ( F, G ==> F[x:=1]\/G[y:=0] ) is sound */
/* The case analysis proof step ( F, G ==> F[x:=1]\/G[x:=0] ) is sound */
def caseAnalysisSoundness(env:Environment, f:Formula, g:Formula, id:Identifier):Unit = {
require(env.contains(id) && evaluate(env, f)==Some(true) && evaluate(env, g)==Some(true))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment