blob: 653858be34c4baa2cda1fb9a04262f5db3985598 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-- Programmed by Jedidiah Barber
-- Licensed under the Sunset License v1.0
-- See license.txt for further details
private with
Ada.Containers.Ordered_Maps;
generic
with function Element_Image
(Item : in Element_Type)
return String;
package Kompsos.Pretty_Print is
function Image
(Item : in Integer)
return String;
function Image
(Item : in Term)
return String;
function Image
(Item : in State)
return String;
function Image
(Item : in State_Array)
return String;
function Image
(Item : in Goal)
return String;
function Structure_DOT
(This : in Goal;
Name : in String := "")
return String;
private
function Image
(Item : in Long_Natural)
return String;
function Image
(Item : in Variable)
return String;
package DOT_Node_Maps is new Ada.Containers.Ordered_Maps
(Key_Type => Goal_Component_Access,
Element_Type => Long_Natural);
end Kompsos.Pretty_Print;
|