General::stop
Details
-
- This message is generated after the indicated message has been generated for the third time in a single evaluation.
- Messages are suppressed to prevent redundant or repetitive messages in long calculations.
- Off[message] switches off the message; On[message] switches it on. For example: Off[General::stop].
Examples
Basic Examples (1)
Several errors occur in this example because each element in the result is invalid:
Map[(2 /. #)&, {3, 2, 6, 5, 2, 4, 4}]This example displays all of the error messages:
Off[General::stop];
Map[(2 /. #)&, {3, 2, 6, 5, 2, 4, 4}]This example switches the message back on:
On[General::stop];This example shows valid input:
Map[(2 /. # -> 0)&, {3, 2, 6, 5, 2, 4, 4}]