mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-03 21:09:11 +00:00 
			
		
		
		
	fix example file to be smt2 format
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
		
							parent
							
								
									0a67f6ee9b
								
							
						
					
					
						commit
						9f567a6215
					
				
					 1 changed files with 10 additions and 10 deletions
				
			
		| 
						 | 
					@ -1,11 +1,11 @@
 | 
				
			||||||
(benchmark ex
 | 
					(declare-const x Int)
 | 
				
			||||||
  :logic AUFLIA
 | 
					(declare-const y Int)
 | 
				
			||||||
  :extrafuns ((x Int) (y Int) (z Int))
 | 
					(declare-const z Int)
 | 
				
			||||||
  :assumption (> x 0)
 | 
					(assert-soft (> x 0))
 | 
				
			||||||
  :assumption (<= x -1)
 | 
					(assert-soft (<= x -1))
 | 
				
			||||||
  :assumption (or (> x 0) (< y 1))
 | 
					(assert-soft (or (> x 0) (< y 1)))
 | 
				
			||||||
  :assumption (> y 2)
 | 
					(assert-soft (> y 2))
 | 
				
			||||||
  :assumption (> y 3)
 | 
					(assert-soft (> y 3))
 | 
				
			||||||
  :assumption (<= y -1) 
 | 
					(assert-soft (<= y -1)) 
 | 
				
			||||||
  :formula (= z (+ x y)))
 | 
					(assert (= z (+ x y)))
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue