Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Proof search bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
eashanhatti committed Jul 2, 2022
1 parent a7498dd commit 4539158
Show file tree
Hide file tree
Showing 16 changed files with 7,826 additions and 479 deletions.
2 changes: 1 addition & 1 deletion OUTPUT.c
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
int f(int x) { return x; }
int f(int x) { return (1 + x); }
int g(int x) { return x; }
2 changes: 1 addition & 1 deletion examples/c_compiler.per
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ axiom compile_add:
, CompileTerm(`e2, `t2)
axiom compile_zero: CompileTerm(zero, "0")
axiom compile_one: CompileTerm(one, "1")
axiom compile_var: Forall(t: Text), CompileTerm(var(t), t)
axiom compile_var: CompileTerm(var(`t), `t)

axiom CompileDecl: MetaFun(CDecl, Text) -> MetaType
axiom compile_func:
Expand Down
Loading

0 comments on commit 4539158

Please sign in to comment.