catala/compiler/verification/z3backend.mli

24 lines
1.0 KiB
OCaml
Raw Normal View History

2022-01-18 20:59:05 +03:00
(* This file is part of the Catala compiler, a specification language for tax and social benefits
computation rules. Copyright (C) 2022 Inria, contributor: Aymeric Fromherz
<aymeric.fromherz@inria.fr>, Denis Merigoux <denis.merigoux@inria.fr>
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the License for the specific language governing permissions and limitations under
the License. *)
(** Interfacing with the Z3 SMT solver *)
2022-01-19 12:12:20 +03:00
module Backend : Io.Backend
2022-01-19 11:47:08 +03:00
module Io :
Io.SolverIo
2022-01-19 12:12:20 +03:00
with type backend_context = Backend.backend_context
and type model = Backend.model
and type vc_encoding = Backend.vc_encoding