Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ src/dist/
**/RocqMakefile
**/RocqMakefile.conf
**/.RocqMakefile.d
**/CoqMakefile
**/CoqMakefile.conf
**/.CoqMakefile.d
**/.lia.cache
*.aux
**/.coqdeps.d
Expand All @@ -31,5 +34,12 @@ doc/book
# direnv
.direnv/

# lean
**/.lake/
**/lake-manifest.json
**/lean-toolchain

*~
*#

*.DS_Store
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@ $(rocq-examples):
make -C $@ clean
make -C $@


lean-examples = tests/lean/amm tests/lean/ERC20

.PHONY: test-lean $(lean-examples)
test-lean: compiler $(lean-examples)
$(lean-examples):
make -C $@ clean
make -C $@

test-parse: parser compiler $(parser_pass:=.parse.pass) $(parser_fail:=.parse.fail)
test-type: parser compiler $(typing_pass:=.type.pass) $(typing_fail:=.type.fail)
test-invariant: parser compiler $(invariant_pass:=.invariant.pass) $(invariant_fail:=.invariant.fail)
Expand Down
1 change: 1 addition & 0 deletions act.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ library
Act.Lex
Act.Parse
Act.Rocq
Act.Lean
Act.Syntax
Act.Syntax.Untyped
Act.Syntax.Typed
Expand Down
3 changes: 2 additions & 1 deletion doc/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
# Verification with act

- [hevm backend: Equivalence to EVM bytecode](./equiv.md)
- [Rocq backend](./rocq.md)
- [Rocq backend](./rocq.md)
- [Lean backend](./lean.md)



Expand Down
99 changes: 0 additions & 99 deletions doc/src/internals.md

This file was deleted.

Loading
Loading