mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 13:29:12 +00:00 
			
		
		
		
	Do not change solver output parsing for non-exists-forall problems.
This commit is contained in:
		
							parent
							
								
									5accf08ef9
								
							
						
					
					
						commit
						d72cb8ea2a
					
				
					 1 changed files with 6 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -704,8 +704,12 @@ class SmtIo:
 | 
			
		|||
                    if msg is not None:
 | 
			
		||||
                        print("%s waiting for solver (%s)" % (self.timestamp(), msg), flush=True)
 | 
			
		||||
 | 
			
		||||
        result = ""
 | 
			
		||||
        while result not in ["sat", "unsat", "unknown"]:
 | 
			
		||||
        if self.forall:
 | 
			
		||||
            result = self.read()
 | 
			
		||||
            while result not in ["sat", "unsat", "unknown"]:
 | 
			
		||||
                print("%s %s: %s" % (self.timestamp(), self.solver, result))
 | 
			
		||||
                result = self.read()
 | 
			
		||||
        else:
 | 
			
		||||
            result = self.read()
 | 
			
		||||
 | 
			
		||||
        if self.debug_file:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue