--
You received this message because you are subscribed to the Google Groups "Pyomo Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyomo-forum...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
For the record (/archives), you can always run couenne directly (combining your steps 2 & 3):
pyomo model.py --solver=couenne --symbolic-solver-labels --keepfiles
The keepfiles option will keep pyomo from deleting the .nl, .row, .col, .sol, and .log [solver output] files. The names are automatically (and randomly) generated in the system temp directory, so they can be a bit tricky to hunt down. The solution is to create an empty directory where you want pyomo to store all its temporary files:
mkdir foo
pyomo model.py --solver=couenne --symbolic-solver-labels --keepfiles --tempdir foo
That way, the directory should end up with exactly 5 files and you can easily sort things out by the file extension.
john
--