Skip to content
Snippets Groups Projects
Commit 38e9700a authored by François Bobot's avatar François Bobot
Browse files

[Quant] move around debug flag and timers

parent cce563dd
No related branches found
No related tags found
1 merge request!26Fix and domain propagation
...@@ -80,7 +80,6 @@ let rec exec d ((triggers, callbacks) as acc) substs n ip = ...@@ -80,7 +80,6 @@ let rec exec d ((triggers, callbacks) as acc) substs n ip =
Debug.dprintf5 debug_full "[Quant] Exec: %a, %a[%i]" Node.pp n Debug.dprintf5 debug_full "[Quant] Exec: %a, %a[%i]" Node.pp n
Ground.Subst.S.pp substs Ground.Subst.S.pp substs
(Ground.Subst.S.cardinal substs); (Ground.Subst.S.cardinal substs);
Debug.incr stat;
(* pp ip; *) (* pp ip; *)
if Ground.Subst.S.is_empty substs then acc if Ground.Subst.S.is_empty substs then acc
else else
...@@ -149,6 +148,11 @@ let rec exec d ((triggers, callbacks) as acc) substs n ip = ...@@ -149,6 +148,11 @@ let rec exec d ((triggers, callbacks) as acc) substs n ip =
in in
acc acc
let exec d acc n ip =
Debug.dprintf3 debug "[Quant] IP Exec %i: %a" ip.id Node.pp n;
Debug.incr stat;
exec d acc Pattern.init n ip
module HPC = Datastructure.Memo (PC) module HPC = Datastructure.Memo (PC)
module HPP = Datastructure.Memo (PP) module HPP = Datastructure.Memo (PP)
module HPT = Datastructure.Memo (PT) module HPT = Datastructure.Memo (PT)
......
...@@ -28,7 +28,6 @@ include Colibri2_popop_lib.Popop_stdlib.Datatype with type t := t ...@@ -28,7 +28,6 @@ include Colibri2_popop_lib.Popop_stdlib.Datatype with type t := t
val exec : val exec :
_ Egraph.t -> _ Egraph.t ->
Ground.Subst.S.t Trigger.M.t * Ground.Subst.S.t Callback.M.t -> Ground.Subst.S.t Trigger.M.t * Ground.Subst.S.t Callback.M.t ->
Ground.Subst.S.t ->
Node.t -> Node.t ->
t -> t ->
Ground.Subst.S.t Trigger.M.t * Ground.Subst.S.t Callback.M.t Ground.Subst.S.t Trigger.M.t * Ground.Subst.S.t Callback.M.t
......
...@@ -23,7 +23,7 @@ let debug = ...@@ -23,7 +23,7 @@ let debug =
let debug_instantiation = let debug_instantiation =
Debug.register_info_flag ~desc:"Handling of quantifiers" Debug.register_info_flag ~desc:"Handling of quantifiers"
"quantifiers.instantiations" "quantifiers.debug_instantiations"
let debug_full = let debug_full =
Debug.register_flag ~desc:"Handling of quantifiers full" "quantifiers.full" Debug.register_flag ~desc:"Handling of quantifiers full" "quantifiers.full"
......
...@@ -259,6 +259,9 @@ end = struct ...@@ -259,6 +259,9 @@ end = struct
Datastructure.Ref.create Fmt.nop "Quant.delayed_find_new_event" Datastructure.Ref.create Fmt.nop "Quant.delayed_find_new_event"
Node.M.empty Node.M.empty
let stats_time =
Debug.register_stats_time "Quantifier.time_delayed_find_new_event"
let run d () = let run d () =
let run () = let run () =
let m = Datastructure.Ref.get scheduled d in let m = Datastructure.Ref.get scheduled d in
...@@ -267,7 +270,7 @@ end = struct ...@@ -267,7 +270,7 @@ end = struct
Node.M.fold_left Node.M.fold_left
(fun acc n ips -> (fun acc n ips ->
InvertedPath.S.fold_left InvertedPath.S.fold_left
(fun acc ip -> InvertedPath.exec d acc Pattern.init n ip) (fun acc ip -> InvertedPath.exec d acc n ip)
acc ips) acc ips)
(Trigger.M.empty, Callback.M.empty) (Trigger.M.empty, Callback.M.empty)
m m
......
...@@ -332,6 +332,10 @@ let register_pattern d (pat : Pattern.t) t = ...@@ -332,6 +332,10 @@ let register_pattern d (pat : Pattern.t) t =
let add_trigger d t = register_pattern d t.pat (Trigger t) let add_trigger d t = register_pattern d t.pat (Trigger t)
let add_callback d c = register_pattern d (Callback.pattern c) (Callback c) let add_callback d c = register_pattern d (Callback.pattern c) (Callback c)
let debug_new_instantiation =
Debug.register_info_flag ~desc:"Handling of quantifiers"
"quantifiers.instantiations"
let instantiate_aux d tri subst = let instantiate_aux d tri subst =
SubstTrie.set tri.substs subst Instantiated; SubstTrie.set tri.substs subst Instantiated;
let form = Ground.ClosedQuantifier.sem tri.form in let form = Ground.ClosedQuantifier.sem tri.form in
...@@ -344,6 +348,8 @@ let instantiate_aux d tri subst = ...@@ -344,6 +348,8 @@ let instantiate_aux d tri subst =
&& not (Egraph.is_equal d n (Ground.ClosedQuantifier.node tri.form)) && not (Egraph.is_equal d n (Ground.ClosedQuantifier.node tri.form))
(* not (Egraph.is_registered d n) *) (* not (Egraph.is_registered d n) *)
then Debug.incr nb_new_instantiation; then Debug.incr nb_new_instantiation;
Debug.dprintf4 debug_new_instantiation "[Quant] Instantiate %a with %a"
Ground.ClosedQuantifier.pp tri.form Ground.Subst.pp subst;
Egraph.register d n; Egraph.register d n;
Egraph.merge d n (Ground.ClosedQuantifier.node tri.form) Egraph.merge d n (Ground.ClosedQuantifier.node tri.form)
...@@ -452,6 +458,9 @@ let instantiate' d tri subst = ...@@ -452,6 +458,9 @@ let instantiate' d tri subst =
Colibri2_stdlib.Debug.test_flag Colibri2_stdlib.Debug.stats Colibri2_stdlib.Debug.test_flag Colibri2_stdlib.Debug.stats
&& not (Egraph.is_registered d n) && not (Egraph.is_registered d n)
then Debug.incr nb_new_instantiation; then Debug.incr nb_new_instantiation;
Debug.dprintf6 debug_new_instantiation
"[Quant] Instantiate %a with %a and %a" Ground.ClosedQuantifier.pp
tri.form Ground.Subst.pp subst Ground.Subst.pp form.subst;
Egraph.register d n; Egraph.register d n;
Egraph.merge d n (Ground.ClosedQuantifier.node tri.form); Egraph.merge d n (Ground.ClosedQuantifier.node tri.form);
Debug.dprintf0 debug "[Quant] Done" Debug.dprintf0 debug "[Quant] Done"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment