-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
In the manual, we expect #'build-finite-ss to return an object.
(setf cylinss (build-finite-ss
'(v0 v1
1 e0 (v1 v0) e1 (v1 v1) e2 (v0 v0) e3 (v1 v0)
2 t0 (e1 e3 e0) t1 (e0 e3 e2)) )) ==>
[K2 Simplicial-Set]
However, its source code uses inspect, which on sbcl launches an interactive session. I suggest to change inspect to describe to keep alignment with the description in the manual.
(DEFUN BUILD-FINITE-SS (list)
(declare (list list))
(let ((bspn (first list))
(table (finite-ss-table list))
(ind-smst (gensym)))
[..]
(setf (symbol-value ind-smst) rslt)
(inspect rslt) ;; use DESCRIBE instead
[..]
rslt)))Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels