There is a "solution" command that reads a .sol file and extracts the values from it. For example:
solution Solution1.sol;
Also you can write a loop to read a series of solution files, as in this example:
for {i in 1..10} {
solution ('Solution' & i & '.sol');
...
}
In place of ... you would put the statements that process the solution.
Bob Fourer
am...@googlegroups.com
=======