def __init__(self, environment, logic=None): Interpolator.__init__(self) self.environment = environment self.logic = logic self.converter = Z3Converter(environment, z3_ctx=z3.main_ctx())
def __init__(self, args, environment, logic, LOGICS=None, **options): Interpolator.__init__(self) options["produce_interpolants"] = True self.options = (args, environment, logic, LOGICS, options)
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