Imandra_interactive_lib.Reasoning_proxyInterface to backend
module type CONN = Reasoning_proxy_intf.CONNmodule type FRONTEND = Reasoning_proxy_intf.FRONTENDmodule type S = Reasoning_proxy_intf.Stype 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.