if variable.lower_bound is None and variable.upper_bound is None:
                pass
            elif variable.lower_bound is None:
                solver_cons.append(solver_var <= variable.upper_bound)
            elif variable.upper_bound is None: