ncvx
ncvx copied to clipboard
pip install scsprox doesn't work I tried to install from source( https://github.com/bettbra/scsprox ) and it doesn't work too, I get the following error: python setup.py install running install running bdist_egg...
Hi, Before I start using this package, I'd like to know if it is possible for me to apply the solver on a non-convex trajectory planning problem where the non-convex...
Hi, I have successfully installed `scsprox`, but when I tried installing `ncvx` using `pip`, the following occured: ``` (ICON_lab) randychen233@Randy-Desktop:~/projects/ICON_lab/ncvx$ pip install ncvx Collecting ncvx Using cached ncvx-0.2.0.tar.gz (12 kB)...
In [ncvx/admm_problem.py](https://github.com/cvxgrp/ncvx/blob/master/ncvx/admm_problem.py) : changed Line 471 - sltn = noncvx_vars[0].z.value.A.copy() to sltn = np.asarray(noncvx_vars[0].z.value).copy()
Hello, So I have been trying to implement tsp.py with NC-ADMM method. However I kept getting the error "ValueError: The cones must match the number of rows of A". I...
Module broken https://github.com/ajfriend/cyscs
``` 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 ) in solve_int_bounded_relax(df, cal_req, bounded_reqs_df, m, mac_cols,...
I have a suggestion. In costs.py file, only 'HcostModel' and 'TcostModel' are exposed. Would it be better to expose 'BaseCost' for extension as well?