From 66163403ec2c39173ee2f0725cf305042003e55e Mon Sep 17 00:00:00 2001 From: Pantelis Sopasakis Date: Tue, 1 Sep 2020 02:28:21 +0100 Subject: [PATCH] fixed typos (issue #195) --- docs/python-interface.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/python-interface.md b/docs/python-interface.md index ec80ee21..1bcba45b 100644 --- a/docs/python-interface.md +++ b/docs/python-interface.md @@ -191,7 +191,7 @@ example is given below: ```python solver_config = og.config.SolverConfiguration() \ - .with_lfbgs_memory(15) \ + .with_lbfgs_memory(15) \ .with_tolerance(1e-5) \ .with_max_inner_iterations(155) ``` @@ -420,7 +420,7 @@ satisfies The user may change the maximum constraint violation using ```python -solver_config.with_constraints_tolerance(1e-6) +solver_config.with_delta_tolerance(1e-6) ``` [penalty method]: https://en.wikipedia.org/wiki/Penalty_method