Modifying constructor for system structures.
(change-system x
[:definitions <definitions>]
[:constraints <constraints>])
This is an often useful alternative to make-system.
We construct a new system structure that is a copy of
This is an ordinary
Macro:
(defmacro change-system (x &rest args) (std::change-aggregate 'system x args '((:definitions . system->definitions) (:constraints . system->constraints)) 'change-system 'nil))