MAMBO logo MAMBO & the MAMBO Toolbox MAMBO logo

Undo — Undo last change to global variables [mathematica]

Undo

The procedure Undo undoes any changes to the global variables that resulted from the previous function call. It has no effect on other variables that the user may have defined using objects stored in the global variables.

Restart;
GlobalObserverDeclarations

{ }

DeclareObservers[A,B];
GlobalObserverDeclarations

{ A "->" { } , B "->" { } }

Undo;
GlobalObserverDeclarations

Last change to global variables has been undone!
{ }


Toolbox functions