forked from drym-org/symex.el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymex-traversals.el
227 lines (181 loc) · 7.2 KB
/
symex-traversals.el
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
;;; symex-traversals.el --- An evil way to edit Lisp symbolic expressions as trees -*- lexical-binding: t -*-
;; URL: https://github.com/countvajhula/symex.el
;; This program is "part of the world," in the sense described at
;; https://drym.org. From your perspective, this is no different than
;; MIT or BSD or other such "liberal" licenses that you may be
;; familiar with, that is to say, you are free to do whatever you like
;; with this program. It is much more than BSD or MIT, however, in
;; that it isn't a license at all but an idea about the world and how
;; economic systems could be set up so that everyone wins. Learn more
;; at drym.org.
;;
;; This work transcends traditional legal and economic systems, but
;; for the purposes of any such systems within which you may need to
;; operate:
;;
;; This is free and unencumbered software released into the public domain.
;; The authors relinquish any copyright claims on this work.
;;
;;; Commentary:
;; Common traversals for symexes.
;;; Code:
(require 'symex-data)
(require 'symex-primitives-lisp)
(require 'symex-evaluator)
(require 'symex-dsl)
;;;;;;;;;;;;;;;;;;
;;; TRAVERSALS ;;;
;;;;;;;;;;;;;;;;;;
(symex-deftraversal symex--traversal-goto-first
(circuit (move backward))
"Go to first symex on the present branch.")
(symex-deftraversal symex--traversal-goto-last
(circuit (move forward))
"Go to last symex on the present branch.")
(symex-deftraversal symex--traversal-goto-lowest
(circuit
(precaution (move down)
(beforehand (not (at root)))))
"Go to lowest (root) symex in present tree.")
(defun symex-goto-first ()
"Select first symex at present level."
(interactive)
(symex-execute-traversal symex--traversal-goto-first)
(point))
(defun symex-goto-last ()
"Select last symex at present level."
(interactive)
(symex-execute-traversal symex--traversal-goto-last)
(point))
(defun symex-goto-lowest ()
"Select lowest symex."
(interactive)
(symex-execute-traversal symex--traversal-goto-lowest)
(point))
(defun symex-goto-highest ()
"Select highest symex."
(interactive)
(symex-execute-traversal (symex-traversal
(circuit (venture (move up)
(circuit (move forward))))))
(point))
(symex-deftraversal symex--traversal-preorder
(protocol (protocol (move up)
(move forward))
(detour (precaution (move down)
(afterwards (not (at final))))
(move forward)))
"Pre-order tree traversal, continuing to other trees.")
(symex-deftraversal symex--traversal-preorder-in-tree
(protocol (protocol (move up)
(move forward))
(detour (precaution (move down)
(afterwards (not (at root))))
(move forward)))
"Pre-order tree traversal.")
(symex-deftraversal symex--traversal-postorder
(protocol (venture (move backward)
(circuit (venture (move up)
(circuit (move forward)))))
(move down))
"Post-order tree traversal, continuing to other trees.")
(symex-deftraversal symex--traversal-postorder-in-tree
(protocol (precaution (venture (move backward)
(circuit (venture (move up)
(circuit (move forward)))))
(beforehand (not (at root))))
(move down))
"Post-order tree traversal.")
(symex-deftraversal symex--traversal-skip-forward
(protocol (move forward)
(detour (precaution (move down)
(afterwards (not (at final))))
(move forward)))
"Tree traversal focused on moving forward, leveraging preorder backtracking
when the way is blocked.")
(symex-deftraversal symex--traversal-skip-backward
(protocol (move backward)
(move down))
"Tree traversal focused on moving backwards, leveraging postorder backtracking
when the way is blocked.")
(symex-deftraversal symex--traversal-climb-branch
(protocol (move up)
(venture (circuit (move forward))
(move up))))
(symex-deftraversal symex--traversal-descend-branch
(protocol (precaution symex--traversal-goto-first
(beforehand (not (at root))))
(venture (move down)
(precaution symex--traversal-goto-first
(beforehand (not (at root)))))))
(defun symex-traverse-forward (count)
"Traverse symex as a tree, using pre-order traversal.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-preorder)))
(defun symex-traverse-forward-more (count)
"Traverse symex as a tree, using pre-order traversal.
Moves more steps at a time. Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-traverse-forward 3)))
(defun symex-traverse-forward-in-tree (count)
"Traverse symex forward using pre-order traversal, stopping at end of tree.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-preorder-in-tree)))
(defun symex-traverse-forward-skip (count)
"Traverse symex as a tree, skipping forward.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-skip-forward)))
(defun symex-traverse-backward (count)
"Traverse symex as a tree, using converse post-order traversal.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-postorder)))
(defun symex-traverse-backward-more (count)
"Traverse symex as a tree, using pre-order traversal.
Moves more steps at a time. Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-traverse-backward 3)))
(defun symex-traverse-backward-in-tree (count)
"Traverse symex backward using post-order traversal, stopping at root of tree.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-postorder-in-tree)))
(defun symex-traverse-backward-skip (count)
"Traverse symex as a tree, skipping backwards.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-skip-backward)))
(defun symex-climb-branch (count)
"Climb up.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-climb-branch)))
(defun symex-descend-branch (count)
"Descend the tree.
Executes the motion COUNT times."
(interactive "p")
(dotimes (_ count)
(symex-execute-traversal symex--traversal-descend-branch)))
(defun symex--do-while-traversing (operation traversal)
"Traverse a symex using TRAVERSAL and do OPERATION at each step."
(let ((result (symex-execute-traversal traversal
nil
operation)))
(message "%s" result)
(when result
(symex--do-while-traversing operation
traversal))))
(provide 'symex-traversals)
;;; symex-traversals.el ends here