예제 #1
0
 def __init__(self, environment, logic=None):
     Interpolator.__init__(self)
     self.environment = environment
     self.logic = logic
     self.converter = Z3Converter(environment, z3_ctx=z3.main_ctx())
예제 #2
0
 def __init__(self, args, environment, logic, LOGICS=None, **options):
     Interpolator.__init__(self)
     options["produce_interpolants"] = True
     self.options = (args, environment, logic, LOGICS, options)
예제 #3
0
파일: z3.py 프로젝트: mpreiner/pysmt
 def __init__(self, environment, logic=None):
     Interpolator.__init__(self)
     self.environment = environment
     self.logic = logic
     self.converter = Z3Converter(environment, z3_ctx=z3.main_ctx())
예제 #4
0
파일: msat.py 프로젝트: diasalvatore/pysmt
 def __init__(self, environment, logic=None):
     Interpolator.__init__(self)
     self.msat_env = MSatEnv()
     self.converter = MSatConverter(environment, self.msat_env)
     self.environment = environment
     self.logic = logic