From 2290b616a9d9d7e1c366e16a133ff6dce4aaf137 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Sat, 11 Feb 2023 12:25:27 +1300 Subject: [PATCH] Update README for public release --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9bd6574..d63a2d0 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,16 @@ multi-objective optimization. ## Installation -This package is currently under development. You can install it as follows: +Install MOA using `Pkg.add`: ```julia -] add https://github.com/jump-dev/MultiObjectiveAlgorithms.jl -] add JuMP#od/vector-optimization +] add MultiObjectiveAlgorithms ``` ## Usage with JuMP +**Compat: this requires at least JuMP v1.8.0** + Use `MultiObjectiveAlgorithms` with JuMP as follows: ```julia @@ -30,8 +31,6 @@ set_optimizer_attribute(model, MOA.SolutionLimit(), 4) Replace `HiGHS.Optimizer` with an optimizer capable of solving a single-objective instance of your optimization problem. -You must set the `MOA.Algorithm` attribute to choose the solution algorithm. - You may set additional optimizer attributes, the supported attributes depend on the choice of solution algorithm.