Skip to content
Snippets Groups Projects
Commit 9ac65923 authored by Heiko Becker's avatar Heiko Becker
Browse files

Adapt simple regression test in Coq

parent 92b5700e
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,9 @@ Definition e3 :expr Q := Binop Plus C12 u0.
Definition Rete3 := Ret e3.
Definition defVars_additionSimple :(nat -> option mType) := fun n =>
if n =? 0 then Some M64 else None.
Definition defVars_additionSimple :(FloverMap.t mType) :=
FloverMap.add (Var Q 0) M64 (FloverMap.empty mType).
Definition thePrecondition_additionSimple:precond := fun (n:nat) =>
if n =? 0 then ( (-100)#(1), (100)#(1)) else (0#1,0#1).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment