in my CP model I have a state function
stateFunction f(a in aRange) with TransitionTimes[a]
By default, the value of f[a] equals -1 until time 0, e.g.
id,value
1,stepwise{ -1 -> 0; 1 -> 3; -1 -> 8; 1 -> 10; -1 }
Is there a possibility in CP Optimizer to define an initial value unlike -1, e.g. 42?
So to say, I would like to have the following values:
id,value
1,stepwise{ 42 -> 0; 1 -> 3; -1 -> 8; 1 -> 10; -1 }
Unfortunately, I have not found a solution studying the documentation and corresponding forum discussions.
Thanks in advance!
New contributor
Hajo Terbrack is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.