Céline Meister
- Total activity 6
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
Activity overview
Latest activity by Céline Meister-
Céline Meister commented,
Hello Jaromil Thank you for your answer. I tried this, but it wouldn't work. Do you know, what's incorrect with this? x3 = pd.Series(m4.addVars(stocks), index=stocks)y3 = pd.Series(m4.addVars(stock...
-
Céline Meister created a post,
sum of two variables integer
AnsweredI have the variables x and y. x = pd.Series(m4.addVars(stocks), index=stocks)y = pd.Series(m4.addVars(stocks), index=stocks) x and y can be non-integer each, but x + y should be integer. I have no ...
-
Céline Meister commented,
thank you so much!
-
Céline Meister created a post,
How can i adjust a parameter if there was no improvement after x iterations?
AnsweredI have the following (working) model, which i have to improve: timeLimit=200 numVarAct=int(0.5*n)numIterations=100 mdl.params.timeLimit=30 tm=time.time()tm2=time.time() while tm2-tm<timeLimit: ...