Skip to content

Commit

Permalink
Re-enable builtin preludes (#720)
Browse files Browse the repository at this point in the history
Fixes #678
  • Loading branch information
bclement-ocp authored Jul 4, 2023
1 parent be0a5c0 commit 9e3ad20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/util/theories.ml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ let content = function
| Ria -> [%blob "src/preludes/ria.ae"]
| Nra -> [%blob "src/preludes/nra.ae"]

let all = ADT :: AC :: List.map (fun p -> Prelude p) [ Fpa; Ria; Nra ]
let all_preludes = [ Fpa; Ria; Nra ]

let default_preludes = []
let all = ADT :: AC :: List.map (fun p -> Prelude p) all_preludes

let default = [ ADT; AC ]
(* TODO: Add the preludes once Dolmen 0.9 is released
https://github.com/OCamlPro/alt-ergo/issues/678 *)
let default_preludes = all_preludes

let default = all

let preludes =
List.filter_map (function | Prelude p -> Some p | _ -> None)

0 comments on commit 9e3ad20

Please sign in to comment.