]> matita.cs.unibo.it Git - helm.git/commitdiff
support for topLevel switch -s added
authorFerruccio Guidi <ferruccio.guidi@unibo.it>
Tue, 15 Oct 2002 16:04:30 +0000 (16:04 +0000)
committerFerruccio Guidi <ferruccio.guidi@unibo.it>
Tue, 15 Oct 2002 16:04:30 +0000 (16:04 +0000)
helm/ocaml/mathql_interpreter/mqint.ml
helm/ocaml/mathql_interpreter/mqint.mli

index 89f635aff227e8eba0c7347e0d1730c3c8f0ad13..c45f9dee8c7c65cd7423d260be848fc6752938c9 100644 (file)
@@ -51,10 +51,12 @@ let check () = Dbconn.pgc ()
 
 exception BooleExpTrue
 
-let stat = ref true
+let stat = ref false
 
 let set_stat b = stat := b
 
+let get_stat () = ! stat
+
 (* valuta una MathQL.set_exp e ritorna un MathQL.resource_set *)
 
 let rec exec_set_exp c = function
index d7dcf9ebcd2f35e23f1d517f3a715d8c294ee176..e969e5c663cf6ad053733a3cf8feaa03a9a40f25 100644 (file)
  * http://cs.unibo.it/helm/.
  *)
 
-val init    : string -> unit                (* open database *)
+val init     : string -> unit                (* open database *)
 
-val execute : MathQL.query -> MathQL.result (* execute query *)
+val execute  : MathQL.query -> MathQL.result (* execute query *)
 
-val close   : unit -> unit                  (* close database *)
+val close    : unit -> unit                  (* close database *)
 
-val check   : unit -> Postgres.connection   (* controllo connessione *)
+val check    : unit -> Postgres.connection   (* check connection *)
+
+val set_stat : bool -> unit                  (* set stat emission *)
+
+val get_stat : unit -> bool                  (* check stat emission *)