Imandra_interactive_lib.Reasoning_proxy
Interface to backend
module type CONN = Reasoning_proxy_intf.CONN
module type FRONTEND = Reasoning_proxy_intf.FRONTEND
module type S = Reasoning_proxy_intf.S
type frontend = (module FRONTEND)
type conn = (module CONN)
type t = (module S)
Full proxy with all the functions
Create a proxy from the given connection
val dummy_conn : db:Imandra_surface.DB_lock.t -> unit -> (module CONN)
Dummy connection that won't do anything. It reflects updates to the DB into its db
parameter.