Skip to content

Commit

Permalink
fix(build): Require dolmen 0.9 (#1050)
Browse files Browse the repository at this point in the history
We are not compatible with the development release of Dolmen due to the
`implicit` field added in [1]. Further, we currently require that Dolmen
move trigger annotations in SMT-LIB format from the body of the formula
to the quantifier itself, but this was removed in [2].

Since both of these will be part of the next release of dolmen, let us
pre-emptively ensure that release won't break Alt-Ergo.

[1] : Gbury/dolmen#199
[2] : Gbury/dolmen#207
  • Loading branch information
bclement-ocp authored Mar 13, 2024
1 parent e14d9b7 commit a91e98e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ See more details on http://alt-ergo.ocamlpro.com/"
(ocaml (>= 4.08.0))
dune
dune-build-info
(dolmen (>= 0.9))
(dolmen_type (>= 0.9))
(dolmen_loop (>= 0.9))
(dolmen (= 0.9))
(dolmen_type (= 0.9))
(dolmen_loop (= 0.9))
(ocplib-simplex (>= 0.5))
(zarith (>= 1.11))
seq
Expand Down

0 comments on commit a91e98e

Please sign in to comment.