Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/BddUtil.ml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ let dump_dot (m: name_map) (b:Bdd.dt) =
name in
Format.printf "digraph D {\n";
let _ : String.t = dump_dot_h m b (Hashtbl.Poly.create ()) in
Format.printf "}"

Format.printf "}";
Format.print_flush ()


(** prints a dotfile to the console *)
Expand Down Expand Up @@ -76,4 +76,4 @@ let dump_dot_multiroot (m: name_map) (b: Bdd.dt VarState.btree) : String.t =
let l_s = print_h s (Format.sprintf "%sl" curlbl) l in
print_h l_s (Format.sprintf "%sr" curlbl) r
in
Format.sprintf "digraph D { %s } " (print_h "" "" b)
Format.sprintf "digraph D { %s } " (print_h "" "" b)
Loading