Continue Calculation in Case of Error#

If you want to continue the calculation in case of error, following input my be used after “PROG”:

  • /+R is used for “continue calculation in case of error.

  • /-R is used for “do not continue calculation if error” (= DEFAULT)

Example:

+PROG AQUA /+R
HEAD
DUMMY_TEXT ! This should trigger an error
END

+PROG TEMPLATE
HEAD
TXB ASD
END

In the example above, even if an error has occurred in the AQUA, the next PROG will be calculated.