0

In the CPLEX Optimisation Studio I can save and restore the results of model solves.

I can not find these results in the OPL project directory. Where are those results stored? In the current workspace directory?

user2653663
  • 2,818
  • 1
  • 18
  • 22
HTC
  • 107
  • 1
  • 4

1 Answers1

0

The information is stored in the history meta data of your workspace. The path to this is something like

${WORKSPACE}/.metadata/.plugins/ilog.odms.ide.core/.history/${PROJECT_NAME}/${RUNCONFIGURATION_NAME}

Note that the data stored there may not be human readable. It is designed for consumption by the Optimization Studio IDE.

Daniel Junglas
  • 5,830
  • 1
  • 5
  • 22
  • Thanks. I wanted to make sure that a backup procedure also saved those previous results. – HTC Feb 24 '20 at 07:50