generic: Say which methods have no fallback.
This commit is contained in:
parent
e7eb1fb09e
commit
a26ce5aebc
1 changed files with 2 additions and 1 deletions
|
@ -25,10 +25,11 @@
|
|||
;;; A discrete dynamical system.
|
||||
(define-generics dds
|
||||
;; Given a dds and a state, produce the next states of the dds.
|
||||
;; This method has no fallback.
|
||||
(dds-step-one dds state)
|
||||
;; Given a dds and a state, produce the next states paired with some
|
||||
;; annotation. Typical usage would include including the
|
||||
;; information about the update mode.
|
||||
;; information about the update mode. This method has no fallback.
|
||||
(dds-step-one-annotated dds state)
|
||||
;; Given a dds and a set of starting states, produce the set of
|
||||
;; states reachable in one step. This method falls back to running
|
||||
|
|
Loading…
Reference in a new issue