aboutsummaryrefslogtreecommitdiffstats
path: root/src/trace/smtMaps.mli
blob: 220b22ada533ebe1fd82b98c6605fda8c261c98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(**************************************************************************)
(*                                                                        *)
(*     SMTCoq                                                             *)
(*     Copyright (C) 2011 - 2021                                          *)
(*                                                                        *)
(*     See file "AUTHORS" for the list of authors                         *)
(*                                                                        *)
(*   This file is distributed under the terms of the CeCILL-C licence     *)
(*                                                                        *)
(**************************************************************************)


(** Maps that store SMT objects **)

(* SMT types *)
val get_btype : string -> SmtBtype.btype
val add_btype : string -> SmtBtype.btype -> unit

(* SMT function symbols *)
val get_fun : string -> SmtAtom.indexed_op
val add_fun : string -> SmtAtom.indexed_op -> unit
val remove_fun : string -> unit

(* Clean-up of all the maps *)
val clear : unit -> unit