Hi,
RealVar x = model.realVar(1, 5, p);
RealVar y = model.realVar(1, 5, p);
// x / (y-2)
//x.div(y.sub(2))).equation().post(); //has extra ')'
x.div(y.sub(2)).equation().post();
x.div(y.sub(2)) is BiCarExpression that does not support .equation().
What is the correct way to do this?
More importantly, what is the status of pure Java continuous variables and expression subsystem? I am hoping to get rid of IBEX in most or even all cases in my application. So I would prefer to build on a stable and further developing basis.
Are there plans to get pow, ln, tan support? (well, tan can be managed with sin/cos)
Best regards,
Juha