mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Fixed warning message
This commit is contained in:
		
							parent
							
								
									fa6f9b4a37
								
							
						
					
					
						commit
						8c191781e7
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -23,7 +23,7 @@ void demorgan() {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    expr x = c.bool_const("x");
 | 
					    expr x = c.bool_const("x");
 | 
				
			||||||
    expr y = c.bool_const("y");
 | 
					    expr y = c.bool_const("y");
 | 
				
			||||||
    expr conjecture = !(x && y) == (!x || !y);
 | 
					    expr conjecture = (!(x && y)) == (!x || !y);
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    solver s(c);
 | 
					    solver s(c);
 | 
				
			||||||
    // adding the negation of the conjecture as a constraint.
 | 
					    // adding the negation of the conjecture as a constraint.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue