Prescriptive optimizer to a target value.
Find more posts tagged with
Sort by:
1 - 3 of
31

Hi,
usually you just create the value
and then extract this value to optimize on. Similarly you can optimize on more than one value at a time.
Best,
Martin
Sort by:
1 - 1 of
11
Hi,
What you can do is to penalize values bigger than x like this:
optmizationValue = x - if(x>eval%{target},1e5,0)this way you avoid values > target.
Best,
Martin