744 |
if(status.isInconsistent())throw runtime_error("System is inconsistent"); |
if(status.isInconsistent())throw runtime_error("System is inconsistent"); |
745 |
if(status.hasExceededIterationLimit())throw runtime_error("Solver exceeded iteration limit"); |
if(status.hasExceededIterationLimit())throw runtime_error("Solver exceeded iteration limit"); |
746 |
if(status.hasExceededTimeLimit())throw runtime_error("Solver exceeded time limit"); |
if(status.hasExceededTimeLimit())throw runtime_error("Solver exceeded time limit"); |
747 |
throw runtime_error("Error in solver (unknown)"); |
throw runtime_error("Error in solver (status.isOK()==FALSE but can't see why)"); |
748 |
} |
} |
749 |
} |
} |
750 |
|
|