blob: 5b443f9f4db291b2ab063ae126524080b00636ed (
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
70
71
72
73
74
75
76
77
78
|
-- 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
-- Datatype->String Conversion --
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;
-- Graphviz DAG Of Tomorrow --
-- Currently only shows general structure, not specific Terms for a Unify
-- or the specific function and arguments for a Conjunct.
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;
function "<"
(Left, Right : in Graph_Component_Access)
return Boolean;
package DOT_Node_Maps is new Ada.Containers.Ordered_Maps
(Key_Type => Graph_Component_Access,
Element_Type => Long_Natural);
end Kompsos.Pretty_Print;
|