3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

ML API: proper use of datatype API for list/enum/constructor.

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2013-02-20 19:49:09 +00:00
parent 6842acbea8
commit dc03e2903f
3 changed files with 27 additions and 29 deletions

View file

@ -5,9 +5,9 @@
@author CM Wintersteiger (cwinter) 2012-12-17
*)
type context
(** Create a context object.
(** Context objects.
Most interactions with Z3 are interpreted in some context; many users will only
require one such object, but power users may require more than one. To start using
@ -27,6 +27,9 @@ type context
(...)
</code>
*)
type context
(** Create a context object *)
val mk_context : (string * string) list -> context