From 201cbed80e6b96429ed747a425f35b75bf64bd13 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 22 Oct 2024 11:22:52 +1300 Subject: [PATCH] Update README.md to clarify options are optional (#239) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 46b792f..340a028 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ To use HiGHS with JuMP, use `HiGHS.Optimizer`: ```julia using JuMP, HiGHS model = Model(HiGHS.Optimizer) +# Set options as needed, for example: set_attribute(model, "presolve", "on") set_attribute(model, "time_limit", 60.0) ```