aboutsummaryrefslogtreecommitdiffhomepage
path: root/hol-light/TacticRecording/ex3.dot
blob: 1704533dc0cd7951db057fb326c95438b4c44c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
digraph G {
  subgraph cluster1 {
    label = "induction";
    351 -> 352;
    351 -> 353;
    352 -> 358;
    subgraph cluster2 {
      label = "base case";
      358;
    }
    353 -> 367;
    subgraph cluster3 {
      label = "step case";
      367 -> 368;
      368 -> 370;
      370 -> 372;
      372 -> 374;
      374 -> 376;
      376 -> 378;
    }
  }
  344 -> 345;
  345 -> 351;
}