-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
38 lines (25 loc) · 1.1 KB
/
README
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
command: list-neighbors NODE DEPTH
print data set of predecessors and successors of NODE recursively up to DEPTH.
command: list-predecessors NODE DEPTH
print data set of predecessors of NODE recursively up to DEPTH.
command: list-successors NODE DEPTH
print data set of successors of NODE recursively up to DEPTH.
command: list-neighbors-nonrecursive NODE
print data set of predecessors and successors of NODE.
command: list-predecessors-nonrecursive NODE
print data set of predecessors of NODE.
command: list-successors-nonrecursive NODE
print data set of successors of NODE.
command: add-arcs
read a data set of arcs and add them to the graph. empty line terminates the set.
command: erase-arcs
read a data set of arcs and erase them from the graph. empty line terminates the set.
command: replace-predecessors NODE
read data set of nodes, replace predecessors of NODE with given set.
command: replace-successors NODE
read data set of nodes, replace successors of NODE with given set.
command: clear
clear the graph model.
command: quit
command: q
quit program.