forked from cubicle-model-checker/cubicle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot.mli
32 lines (23 loc) · 1.38 KB
/
dot.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(**************************************************************************)
(* *)
(* Cubicle *)
(* *)
(* Copyright (C) 2011-2014 *)
(* *)
(* Sylvain Conchon and Alain Mebsout *)
(* Universite Paris-Sud 11 *)
(* *)
(* *)
(* This file is distributed under the terms of the Apache Software *)
(* License version 2.0 *)
(* *)
(**************************************************************************)
open Types
(** Generation of graphical search graphs with dot/graphviz *)
val new_node : Node.t -> unit
val candidate : Node.t -> Node.t -> unit
val fixpoint : Node.t -> int list -> unit
val restart : unit -> unit
val error_trace : Node.t -> unit
val open_dot : unit -> (unit -> unit)
val delete_node_by : Node.t -> Node.t -> unit