Aron Zingler
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
Posts
Recent activity by Aron Zingler-
How does Gurobi handle 'convex-quadratic' variables in nonconvex optimization?
AnsweredI am planning to implement an algorithm that solves multiple subproblems of the form \[\begin{align} \underset{\boldsymbol{x},\boldsymbol{y}^i,\boldsymbol{z}^i,t}{\min} &&f(\boldsymbol{x}) & \\ \te...
-
Detect linear problem
AnsweredI add constraints to my model within the C++ API automatically based on user input. I do not know in advance if the constraint given by the user will be linear or quadratic. At the moment I will j...
-
Help with Unbounded or Infeasible
AnsweredI have the following problem with the C++ API. My understanding is that the following code: #include <iostream> #include <limits> #include "gurobi_c++.h" int main() { // construct model ...