From 6c3d8b4c3d7f12f305fd3e45d600e4d35625b5af Mon Sep 17 00:00:00 2001 From: Charlie Vanaret Date: Tue, 22 Oct 2024 00:16:19 +0200 Subject: [PATCH] Improved documentation of default options --- uno/tools/Options.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/uno/tools/Options.cpp b/uno/tools/Options.cpp index 48d2a953..4129f130 100644 --- a/uno/tools/Options.cpp +++ b/uno/tools/Options.cpp @@ -73,7 +73,7 @@ namespace uno { options["print_solution"] = "yes"; // threshold on objective to declare unbounded NLP options["unbounded_objective_threshold"] = "-1e20"; - // enforce linear constraints at the initial point + // enforce linear constraints at the initial point (yes|no) options["enforce_linear_constraints"] = "no"; /** statistics table **/ @@ -107,7 +107,7 @@ namespace uno { options["globalization_mechanism"] = "TR"; /** main options **/ - // logging level (INFO|DEBUG) + // logging level (SILENT|DISCRETE|WARNING|INFO|DEBUG|DEBUG2|DEBUG3) options["logger"] = "INFO"; // Hessian model (exact|zero) options["hessian_model"] = "exact"; @@ -128,11 +128,11 @@ namespace uno { options["protect_actual_reduction_against_roundoff"] = "no"; /** solvers **/ - // default QP solver + // default QP solver (BQPD) options["QP_solver"] = "BQPD"; - // default LP solver + // default LP solver (BQPD) options["LP_solver"] = "BQPD"; - // default linear solver + // default linear solver (MA57|MUMPS) options["linear_solver"] = "MA57"; /** globalization strategy options **/