TightConstraintSet not working with Signomials
See original GitHub issuefrom gpkit import Variable, Model
from gpkit.constraints.tight import TightConstraintSet as TCS
from gpkit import LinkedConstraintSet
x = Variable('x'); y = Variable('y');
m = Model(x, [TCS([x >= y]), x >= 2, y >= 1])
m.solve()
# returns error as you would expect
m1 = Model(x, [TCS([x >= y]), x >= 2])
m2 = Model(y, [y>=1])
lc = LinkedConstraintSet([m1, m2])
m3 = Model(m1['x'], lc)
m3.solve()
# doesn't return an error #whoops
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Global solution of optimization problems with signomial parts
In this paper a new approach for the global solution of nonconvex MINLP (Mixed Integer NonLinear Programming) problems that contain signomial (generalized ...
Read more >SIGNOMIAL PROGRAMS WITH EQUALITY CONSTRAINTS
strategy of the algorithm is to replace the original problem with a se- quence of subproblems each subject to the original signomial inequality...
Read more >Global solution of optimization problems with ... - Åbo Akademi
In this paper a new approach for the global solution of nonconvex MINLP (Mixed Integer NonLinear Programming) problems that contain ...
Read more >Signomial and polynomial optimization via relative ... - Index of /
Signomial optimization and signomial programming are challenging problems with ... inequality constraints– i.e. the problem of bounding. ( f , g)⋆.
Read more >gpkit Documentation
Unlike most non-linear optimization problems, large GPs can be solved extremely quickly. ... A Signomial Program has signomial constraints.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fixed in #605 now, and test added.
Fixed in #605