def __init__(self): _PHBoundBase.__init__(self) self.wonly_file = "wonly.ssv" print ("konvw is creating W-only convergence file="+self.wonly_file) ofile = open(self.wonly_file, 'w') ofile.close() self._valid_weights_objective_relative_tolerance = 0.01
def __init__(self, *args, **kwds): _PHBoundBase.__init__(self) # the bundle dual master model self._master_model = None # maps (iteration, scenario_name) to objective function value self._past_objective_values = {} # maps (iteration, scenario_name, variable_id) to value # maps iteration -> copy of each scenario solution self._past_var_values = {}