You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the below problem I defined two constraints for which it is trivial to show analytically that they cannot be satisfied at the same time. However, the code takes lots of time and does not give back a clear unfeasibility certificate. Why is this? For other problems where I cannot show infeasibility analytically, the same code with other constraints works perfect.
We'll continue to look into it, but with this problem in particular, it looks like scaling may be a major issue. E.g., v spans 8 orders of magnitude (so v^2 spans 16 orders of magnitude), and if I check an interval extension of e4 I get [-1.98e+07, 1.1e+10], which is quite a wide search area. Infeasibility detection in the domain reduction phases will be poor as a result of this, so EAGO will rely on branch-and-bound to determine the infeasibility of all nodes, and it will need to do this until it exhausts the full stack. We do note that EAGO's interval constraint propagation method is currently inactive, which has been shown to be effective on some poorly-scaled problems. We intend to get this routine updated soon. For this problem in particular, if there is a way to rescale it, we expect that would likely do a lot to improve the solution speed.
Hi,
in the below problem I defined two constraints for which it is trivial to show analytically that they cannot be satisfied at the same time. However, the code takes lots of time and does not give back a clear unfeasibility certificate. Why is this? For other problems where I cannot show infeasibility analytically, the same code with other constraints works perfect.
Any help is appreciated.
The text was updated successfully, but these errors were encountered: