Skip to content

Commit

Permalink
comment 2
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Nov 7, 2024
1 parent 9830dae commit 472ddb0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion src/solver/misc/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ std::unique_ptr<GetOpt::Parser> CreateParser(Settings& settings,
"solver-parameters",
"Set solver-specific parameters, for instance --solver-parameters=\"THREADS 1 PRESOLVE 1\""
"for XPRESS or --solver-parameters=\"parallel/maxnthreads 1, lp/presolving TRUE\" for SCIP."
"Syntax is solver-dependent, and only supported for SCIP & XPRESS."
"Syntax is solver-dependent, and only supported for SCIP & XPRESS.");

parser->addParagraph("\nParameters");
// --name
Expand Down
6 changes: 0 additions & 6 deletions src/solver/utils/include/antares/solver/utils/named_problem.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ struct PROBLEME_SIMPLEXE_NOMME : public PROBLEME_SIMPLEXE
const std::vector<std::string>& NomDesVariables;
const std::vector<std::string>& NomDesContraintes;
bool useNamedProblems_;
bool solverLogs_;

public:
std::vector<BasisStatus>& StatutDesVariables;
Expand Down Expand Up @@ -60,11 +59,6 @@ struct PROBLEME_SIMPLEXE_NOMME : public PROBLEME_SIMPLEXE
return NomDesContraintes;
}

bool SolverLogs() const
{
return solverLogs_;
}

bool IntegerVariable(size_t idx) const
{
return VariablesEntieres[idx];
Expand Down
1 change: 0 additions & 1 deletion src/solver/utils/named_problem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ PROBLEME_SIMPLEXE_NOMME::PROBLEME_SIMPLEXE_NOMME(const std::vector<std::string>&
NomDesVariables(NomDesVariables),
NomDesContraintes(NomDesContraintes),
useNamedProblems_(UseNamedProblems),
solverLogs_(SolverLogs),
StatutDesVariables(StatutDesVariables),
StatutDesContraintes(StatutDesContraintes),
VariablesEntieres(VariablesEntieres)
Expand Down

0 comments on commit 472ddb0

Please sign in to comment.