From b7d1a4ed7c49a2f26bd92dd73180ed33b0f3d768 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 15 Oct 2024 09:27:54 +1300 Subject: [PATCH] Fix incorrect code in the README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bb6e16d8..43f443bf 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,8 @@ To use Xpress with JuMP, use: ```julia using JuMP, Xpress model = Model(Xpress.Optimizer) -set_optimizer(model, "PRESOLVE", 0) +# Modify options, for example: +set_attribute(model, "PRESOLVE", 0) ``` ## Options