···1122+ - [Graphviz]: added `PosPinned` to type `NeatoAttributes.vertex`
23 - [Oper]: improved efficiency of `intersect`
34 (#136, reported by Ion Chirica)
45 - [Path.Check]: improved efficiency with a better use of the cache
+3
vendor/opam/ocamlgraph/src/graphviz.ml
···887887 [ CommonAttributes.vertex
888888 | `Pos of float * float
889889 (** Initial coordinates of the node. *)
890890+ | `PosPinned of float * float
891891+ (** Initial coordinates of the vertex, pinned. *)
890892 ]
891893892894 (** Attributes of edges. They include all common edge attributes and
···922924 #CommonAttributes.vertex as att ->
923925 CommonAttributes.fprint_vertex ppf att
924926 | `Pos (f1, f2) -> fprintf ppf "pos=\"%f,%f\"" f1 f2
927927+ | `PosPinned (f1, f2) -> fprintf ppf "pos=\"%f,%f!\"" f1 f2
925928926929 let fprint_edge ppf = function
927930 #CommonAttributes.edge as att -> CommonAttributes.fprint_edge ppf att
+2
vendor/opam/ocamlgraph/src/graphviz.mli
···471471 [ CommonAttributes.vertex
472472 | `Pos of float * float
473473 (** Initial coordinates of the vertex. *)
474474+ | `PosPinned of float * float
475475+ (** Initial coordinates of the vertex, pinned. *)
474476 ]
475477476478 (** Attributes of edges. They include all common edge attributes and