Is there a setting (I'd expect it to be an environment variable) in Mathematica that would make the kernel quit at the occurrence of a debug error? Often, I'll get debug errors and the notebook will continue evaluating bad data forcing me to restart the kernel.
|
You wrote:
You can do this by defining
Now the kernel quits when an assertion fails:
Alternatively, you can use
It allows you to abort the evaluation or enter subsession (the same as You also can extend this approach for printing the assertion which failed:
|
|||
|
|
|
Following an idea borrowed from the Mathematica toolbag:
Here, replace Normal message:
Your 'debug' message:
Update Assert messages get some additional arguments, so you have to catch those too. And, by the way, you have to put the actual message name in the definition (not using the example message I used above):
|
|||||||||
|
|
This response assumes that by "debug error" you mean that a Message has been issued. For example, a message is issued as a warning if one attempts to divide by zero:
Note how I will not re-iterate @Sjoerd's excellent answer which shows how to configure a Mathematica session so that the kernel will exit if any message is issued by any evaluation. If you wish to be more selective and only quit the kernel if a particular evaluation issues a message, then the following function might be useful:
With this definition in place, you can force the kernel to quit after any message is issued by a particular evaluation:
If might be convenient to only quit the kernel if certain messages are issued. To this end,
Note how the kernel was not exited since the message did not match
Here the kernel quits because the indicated message appeared. It is possible to filter multiple messages or even pre-defined groups of messages -- see Check for details. |
|||
|
|
|
In addition to the other answers you may want to investigate using:
Which allows you to execute code when any message is triggered. For example, you can evaluate this:
Which prints the evaluation stack (sometimes very large!) of the code that is evaluating. The dialog function then puts you in a sub-evaluation loop, allowing you to inspect the values of variables. To get out of the dialog loop, you can evaluate:
which takes you back to the main loop (the main evaluation then either finishes or breaks at a new message). |
|||||||||
|
symbol::msgname. Post that, if you would. – rcollyer Nov 3 '11 at 0:16