mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-03 21:09:11 +00:00 
			
		
		
		
	Updated deepcopy to the latest Python API
This commit is contained in:
		
							parent
							
								
									8566d88b99
								
							
						
					
					
						commit
						a785ffe0ba
					
				
					 1 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -5340,7 +5340,7 @@ class Goal(Z3PPObject):
 | 
			
		|||
    def __copy__(self):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def __deepcopy__(self):
 | 
			
		||||
    def __deepcopy__(self, memo={}):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def simplify(self, *arguments, **keywords):
 | 
			
		||||
| 
						 | 
				
			
			@ -5528,7 +5528,7 @@ class AstVector(Z3PPObject):
 | 
			
		|||
    def __copy__(self):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def __deepcopy__(self):
 | 
			
		||||
    def __deepcopy__(self, memo={}):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def __repr__(self):
 | 
			
		||||
| 
						 | 
				
			
			@ -5872,7 +5872,7 @@ class FuncInterp(Z3PPObject):
 | 
			
		|||
    def __copy__(self):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def __deepcopy__(self):
 | 
			
		||||
    def __deepcopy__(self, memo={}):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def as_list(self):
 | 
			
		||||
| 
						 | 
				
			
			@ -6168,7 +6168,7 @@ class ModelRef(Z3PPObject):
 | 
			
		|||
    def __copy__(self):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def __deepcopy__(self):
 | 
			
		||||
    def __deepcopy__(self, memo={}):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
def Model(ctx = None):
 | 
			
		||||
| 
						 | 
				
			
			@ -6786,7 +6786,7 @@ class Solver(Z3PPObject):
 | 
			
		|||
    def __copy__(self):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def __deepcopy__(self):
 | 
			
		||||
    def __deepcopy__(self, memo={}):
 | 
			
		||||
        return self.translate(self.ctx)
 | 
			
		||||
 | 
			
		||||
    def sexpr(self):
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue