'Relax' method not found for Integer problem
x = Integer(int(len(df)), M=m)
objective = sum_squares(x.T*df['calories'].values-cal_req)
prob = Problem(Minimize(objective),constraints)
prob.solve(method="relax")
Error message: ----> 1 res, totals= solve_int_bounded_relax(sample_df,cal,ub_lb_reqs_df, 5, mac_cols, nut_cols )
C:\Anaconda3\lib\site-packages\cvxpy\problems\problem.py in solve(self, *args, **kwargs) 204 func_name = kwargs.pop("method", None) 205 if func_name is not None: --> 206 func = Problem.REGISTERED_SOLVE_METHODS[func_name] 207 return func(self, *args, **kwargs) 208 else:
KeyError: 'relax'
I'll close this one out in the next PR @SteveDiamond, making more explicit the methods and adding a simple Integer test case.