mirror of
				https://github.com/Z3Prover/z3
				synced 2025-10-30 19:22:28 +00:00 
			
		
		
		
	https://github.com/Z3Prover/z3/issues/5323#issuecomment-866503616
This commit is contained in:
		
							parent
							
								
									cde3eac7be
								
							
						
					
					
						commit
						284d599788
					
				
					 1 changed files with 5 additions and 4 deletions
				
			
		|  | @ -213,11 +213,12 @@ void proto_model::cleanup() { | |||
|     TRACE("model_bug", model_v2_pp(tout, *this);); | ||||
|     func_decl_set found_aux_fs; | ||||
|     expr_ref_vector trail(m); | ||||
|     for (auto const& kv : m_finterp) { | ||||
|         TRACE("model_bug", tout << kv.m_key->get_name() << "\n";); | ||||
|         func_interp * fi = kv.m_value; | ||||
|     ptr_buffer<func_interp> finterps; | ||||
|     for (auto const& kv : m_finterp) | ||||
|         finterps.push_back(kv.m_value); | ||||
|     for (auto* fi : finterps)          | ||||
|         cleanup_func_interp(trail, fi, found_aux_fs); | ||||
|     } | ||||
|      | ||||
|     for (unsigned i = 0; i < m_const_decls.size(); ++i) { | ||||
|         func_decl* d = m_const_decls[i]; | ||||
|         expr* e = m_interp[d].second; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue