prog::untrace
-- terminates
observation of functionsprog::untrace(
obj)
undoes the effect of
prog::trace(obj)
and
restores the original definition of obj
.
prog::untrace(obj)
prog::untrace()
obj |
- | the MuPAD function that is observed, or a domain or a function environment |
prog::untrace
returns the void object null()
.
prog::trace
, setuserinfo
, debug
, prog::profile
, prog::calltree
prog::untrace(
obj)
terminates the
observation of the MuPAD function obj
performed by
prog::trace
.obj
can be a domain or a function environment, too. Then all methods of
the domain or function environment will be restored.The observation of a function will be terminated:
>> prog::untrace(sin):
Error: function was not traced [prog::untrace]
>> prog::trace(sin): sin(2)
enter 'sin' with args : 2 leave 'sin' with result : sin(2) sin(2)
>> prog::untrace(sin): sin(2)
sin(2)
sharelib::untrace