let print_stats fmt () =
Format.fprintf fmt "@[<v>@[Nb iterations of outer while loop:@ %d@]" !stats_nb_iterations_of_outer_loop ;
Format.fprintf fmt "@ " ;
Format.fprintf fmt "@[<v>@[Nb iterations of reachability:@ %d@]" !stats_nb_iterations ;
Format.fprintf fmt "@ " ;
Format.fprintf fmt "@[Nb created nodes:@ %d@]" !stats_nb_created_nodes ;
Format.fprintf fmt "@ " ;
Format.fprintf fmt "@[Nb refinment processes:@ %d@]" !stats_nb_refinment_processes ;
Format.fprintf fmt "@ " ;
Format.fprintf fmt "@[Nb refined nodes:@ %d@]" !stats_nb_refined_nodes ;
Format.fprintf fmt "@ " ;
Format.fprintf fmt "@[Nb proof tree nodes:@ %d@]" !stats_nb_proof_tree_nodes;
Format.fprintf fmt "@ " ;
Format.fprintf fmt "@[Nb proof tree covered nodes:@ %d@]@]" !stats_nb_proof_tree_covered_nodes;
Format.fprintf fmt "@[Nb deleted nodes:@ %d@]@]" !stats_nb_deleted_nodes;
()