Using Multiple Stopping Criteria
If more than one stopping criterion is activated, it is necessary to construct a logical rule to determine when the criteria stops the solver.
For example, you can stop the solver when all criteria generated from monitors have been satisfied. However, you can also stop the solver when the number of iterations exceeds a limit.
Logical rules (AND, OR) are assigned to each individual criterion and are used to determine how they interact as a group. If a criterion is assigned an OR logical rule, the solver stops when it is satisfied. The solver also stops when all the criteria assigned the AND logical rule are satisfied. By default all criteria are assigned the OR logical rule. To change the logical rule that is associated with a criterion, select the criterion node then in the Properties window, set the option that you require for the Logical Rule property.

For example, if you have four criteria named A, B, C, and D, the Logical Rule is set to OR for A and B, then C and D have the Logical Rule set to AND. In that case, the boolean expression that is tested is:
A OR B OR (TRUE AND C AND D)
The TRUE at the beginning of the bracketed ANDs caters for the (unusual) situation where there is only one criterion with an AND.