Code: Select all
./configure --prefix=/opt/ppl --enable-ppl_lcdd
This would usually require sudo for make install, because /opt is owned by root.
Thanks for pointing this out. I typiclaly chown the folders before, e.g.:
Code: Select all
sudo mkdir /opt/ppl
sudo chown opfer. /opt/ppl
Then you don't need sudo for the installation process.
Is there a way to correlate these coefficients with the variables of the cplex lp file of the OP? In other words, is there an easy way to interpret the ppl output ?
That is, could you let me know in what order did you populate the variables in your test2.txt file and meaning of other entries in that file? Then, if I understand the correlation between test2.txt file and ppl output, I can write some wrapper code around this that spits out the equations/inequalities in human understandable form.
I did this in the order that my own reader uses. If I remember correctly, it uses the order from the "BOUNDS" section, if provided. In your case, I recommend writing the file on your own. Then you know the order. But for production, I would not write such I file at all. I would use the API. As I said, I just did a test whether it works at all.
Concerning the other entries of the file, I just copied one example. It seems important to add a "1" as first element of each row. Didn't investigate this any further.
Best regards,
Thomas