Fulya Terzi
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
Posts
Recent activity by Fulya Terzi-
Barrier Display and Barrier strting Point Algorithm in Gurobi Java
OngoingHi, I need to learn about how can I write in Gurobi the Barrier Display option. What I mean that in cplex Barrier Display parameter can be selected among 0, 1 and 2 which sets the level of barrier ...
-
model.getValues()
AnsweredHi, I need to get the values of decision variables. for (Entry<String, Line> lineEntry : optimizationParams.getNetworkElements().getLines().entrySet()) { if (LakeId.equals(lineEntry.getValue...
-
Change variable type?
AnsweredHi, I want to relax the integrality constraint on the variable. What I mean that I want to change variable type from integer to continuous type? How can I do this in Gurobi? Thank you in advance.
-
Gurobi in Java - How can I add two Expression?
OngoingHello, I declare a new expression such as GRBQuadExpr[ ] ObjExpr = new GRBQuadExpr[size]; I have another two expressions such as GRBLinExpr LinObjExpr and GRBQuadExpr QuadObjExpr. for ( count=0; ...
-
How can I write Cplex model.prod() function in Gurobi Java?
Answeredpublic GRBQuadExpr funcName(SegmentName segment, GRBModel model, GRBVar decVar)throws GRBException { // IloNumExpr IloCplex IloNumVar IloException// Gurobi does not except this one. How will I chan...