]> matita.cs.unibo.it Git - helm.git/commitdiff
the edges must be quoted as well (not only the nodes)
authorFerruccio Guidi <ferruccio.guidi@unibo.it>
Sun, 11 Apr 2010 17:13:56 +0000 (17:13 +0000)
committerFerruccio Guidi <ferruccio.guidi@unibo.it>
Sun, 11 Apr 2010 17:13:56 +0000 (17:13 +0000)
From: fguidi <fguidi@c2b2084f-9a08-0410-b176-e24b037a169a>

helm/software/components/extlib/graphvizPp.ml

index ed5bbdc54c69c1d1557a43635d72bd4c2a4f1ca3..46432883744ad7c68406be2d040dbe40134f25ce 100644 (file)
@@ -49,10 +49,16 @@ module Dot =
   struct
     let attribute fmt (k, v) = fprintf fmt "@[<hv2>%s=@,\"%s\",@]" k v
     let attributes attrs fmt = List.iter (attribute fmt) attrs
+    let quote_string quote s = if quote then "\"" ^s ^ "\"" else s
 
     let node name ~quote ?(attrs = []) fmt =
-      let quote_string = if quote then "\"" else "" in
-      fprintf fmt "@[<hov2>%s%s%s@ [" quote_string name quote_string;
+      fprintf fmt "@[<hov2>%s@ [" (quote_string quote name);
+      attributes attrs fmt;
+      fprintf fmt "];@]@,"
+
+    let edge ~quote name1 name2 ?(attrs = []) fmt =
+      fprintf fmt "@[<hov2>%s ->@ %s@ [" 
+         (quote_string quote name1) (quote_string quote name2);
       attributes attrs fmt;
       fprintf fmt "];@]@,"
 
@@ -68,10 +74,7 @@ module Dot =
       | None -> ())
 
     let node = node ~quote:true
-    let edge name1 name2 ?(attrs = []) fmt =
-      fprintf fmt "@[<hov2>%s ->@ %s@ [" name1 name2;
-      attributes attrs fmt;
-      fprintf fmt "];@]@,"
+    let edge = edge ~quote:true
     let raw s fmt = pp_print_string fmt s
     let trailer fmt = fprintf fmt "@,}@]%!"
   end