From 739f08a0992a33f5b34e415d9e72ddbbac5fa8b7 Mon Sep 17 00:00:00 2001 From: Andres Ramos <61053256+arght@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:21:25 +0100 Subject: [PATCH] update doc --- openTEPES/openTEPES_ProblemSolving.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openTEPES/openTEPES_ProblemSolving.py b/openTEPES/openTEPES_ProblemSolving.py index 46bf1afd..f787577a 100644 --- a/openTEPES/openTEPES_ProblemSolving.py +++ b/openTEPES/openTEPES_ProblemSolving.py @@ -21,7 +21,7 @@ def ProblemSolving(DirName, CaseName, SolverName, OptModel, mTEPES, pIndLogConso Solver = SolverFactory(SolverName) # select solver if SolverName == 'gurobi': Solver.options['LogFile' ] = _path+'/openTEPES_gurobi_'+CaseName+'.log' - # Solver.options['IISFile' ] = _path+'/openTEPES_gurobi_'+CaseName+'.ilp' # should be uncommented to show results of IIS + # Solver.options['IISFile' ] = _path+'/openTEPES_gurobi_'+CaseName+'.ilp' # should be uncommented to show results of IIS Solver.options['Method' ] = 2 # barrier method Solver.options['MIPFocus' ] = 3 Solver.options['Presolve' ] = 2