Prims - Update ask, of to take agents
[clnl] / src / main / nvm / base.lisp
index 1df5022fbc08c73d4adb3d5131cc356566dc9c0c..8f1595c1677d6f0c7edcac97ac7e159b25868561 100644 (file)
   ((eql agent-set :patches) *patches*)
   ((and (listp agent-set) (eql :agent-set (car agent-set))) (cdr agent-set))
   (t (error "Doesn't seem to be an agent-set: ~A" agent-set))))
+
+(defun agent-set-p (o)
+ (or
+  (eql o :turtles)
+  (eql o :patches)
+  (and (listp o) (eql :agent-set (car o)))))
+
+(defun agent-p (o)
+ (or (turtle-p o) (patch-p o)))