0

So I'm using SCIP-JNI in my scala project. SCIP's JNI-based libearies make calls to binary C-based solver to do the optimizatin. Is there a way to set the memory for the solver?

Daniel
  • 5,839
  • 9
  • 46
  • 85

1 Answers1

1

I just have added functions to JSCIPOpt such that one can set explicitly some parameters in the same way as in SCIP. For example,

scip.setRealParam("limits/memory", 1000.0)

sets a memory limit of 1GB.

mueldgog
  • 383
  • 1
  • 7