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
16 changes: 14 additions & 2 deletions lib/dune
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
ty
utils
value
z3_mappings)
; z3_mappings2)
z3_mappings
z3_mappings2)
(private_modules lexer parser)
(libraries
hc
Expand Down Expand Up @@ -67,6 +67,13 @@
from
(z3 -> z3_mappings.default.ml)
(-> z3_mappings.nop.ml))
;; This is the improved version of the mappings
;; Will replace the previous one at some point
(select
z3_mappings2.ml
from
(z3 -> z3_mappings2.default.ml)
(-> z3_mappings2.nop.ml))
(select
cvc5_mappings.ml
from
Expand All @@ -90,6 +97,11 @@
(progn
(echo "let solver_name = \"Z3\"\n")
(cat mappings.nop.ml)))
(with-stdout-to
z3_mappings2.nop.ml
(progn
(echo "let solver_name = \"Z3\"\n")
(cat mappings.nop.ml)))
(with-stdout-to
colibri2_mappings.nop.ml
(progn
Expand Down
Loading