mirror of
				https://github.com/Z3Prover/z3
				synced 2025-10-31 11:42:28 +00:00 
			
		
		
		
	update arithmetic contract for unbounded (#5696)
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
		
							parent
							
								
									9b4f3a7075
								
							
						
					
					
						commit
						fdc253afdd
					
				
					 2 changed files with 4 additions and 2 deletions
				
			
		|  | @ -986,7 +986,7 @@ namespace arith { | |||
|         IF_VERBOSE(12, verbose_stream() << "final-check " << lp().get_status() << "\n"); | ||||
|         SASSERT(lp().ax_is_correct()); | ||||
| 
 | ||||
|         if (lp().get_status() != lp::lp_status::OPTIMAL || lp().has_changed_columns()) { | ||||
|         if (!lp().is_feasible() || lp().has_changed_columns()) { | ||||
|             switch (make_feasible()) { | ||||
|             case l_false: | ||||
|                 get_infeasibility_explanation_and_set_conflict(); | ||||
|  | @ -1097,6 +1097,8 @@ namespace arith { | |||
|             return l_false; | ||||
|         case lp::lp_status::FEASIBLE: | ||||
|         case lp::lp_status::OPTIMAL: | ||||
|         case lp::lp_status::UNBOUNDED: | ||||
|             SASSERT(!lp().has_changed_columns()); | ||||
|             return l_true; | ||||
|         case lp::lp_status::TIME_EXHAUSTED: | ||||
|         default: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue