mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-11 21:48:50 -05:00
11 lines
239 B
OCaml
11 lines
239 B
OCaml
(*
|
|
MSAT is free software, using the Apache license, see file LICENSE
|
|
Copyright 2016 Guillaume Bury
|
|
*)
|
|
|
|
module Expr = Expr_sat
|
|
module Type = Type_sat
|
|
|
|
module Make() =
|
|
Msat_solver.Solver.Make(Expr)(Msat_solver.Solver.DummyTheory(Expr))()
|
|
|