-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.lisp
75 lines (75 loc) · 1.26 KB
/
package.lisp
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
(in-package #:cl-user)
(defpackage #:flow
(:nicknames #:org.shirakumo.flow)
(:use #:cl)
;; conditions.lisp
(:export
#:flow-condition
#:connection-already-exists
#:new-connection
#:old-connection
#:illegal-connection
#:connection
#:message
#:designator-not-a-port
#:node
#:slot-name
#:graph-structure-error
#:graph-contains-cycles
#:node
#:graph-is-bipartite
#:node-a
#:node-b)
;; graph.lisp
(:export
#:visit
#:extract-graph
#:topological-sort
#:color-nodes
#:allocate-ports
#:a*)
;; nodes.lisp
(:export
#:unit
#:attributes
#:attribute
#:remove-attribute
#:with-attributes
#:connection
#:left
#:right
#:connection=
#:sever
#:directed-connection
#:port
#:connections
#:node
#:name
#:connect
#:disconnect
#:remove-connection
#:check-connection-accepted
#:n-port
#:1-port
#:in-port
#:out-port
#:node
#:ports
#:port
#:dynamic-node
#:other-node
#:target-node)
;; static-node.lisp
(:export
#:*resolve-port*
#:port-value
#:port-value-boundp
#:port-value-makunbound
#:define-port-value-slot
#:port-definition
#:port-type
#:static-node-class
#:static-node
#:define-node)
;; toolkit.lisp
(:export))