1 | initial version |
Helloooooooooooooooooooooo !!
That's because all variables are assumed to be >= 0 by default unless specified otherwise. Sorry for that, it's something that all LP solvers that I know assume too (and that's why we do, too), and it's pretty hard to advertise in the doc and make sure that everybody sees it O_o
So if you want to make this work with negative values, you have to add lines like : {{{ p.set_min(p['x'],None) p.set_min(p['y'],None) }}} in your code. And it will work, at least it does on my computer.
Perhaps I should add warnings everywhere in the doc O_o
Nathann
2 | No.2 Revision |
Helloooooooooooooooooooooo !!
That's because all variables are assumed to be >= 0 by default unless specified otherwise. Sorry for that, it's something that all LP solvers that I know assume too (and that's why we do, too), and it's pretty hard to advertise in the doc and make sure that everybody sees it O_o
So if you want to make this work with negative values, you have to add lines like :
{{{
:
p.set_min(p['x'],None)
p.set_min(p['y'],None)
}}}
in your code. And it will work, at least it does on my computer.
Perhaps I should add warnings everywhere in the doc O_o
Nathann