From 83e87dbd36f02e9eeb6795c31a1c1280fc55be3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Besan=C3=A7on?= Date: Wed, 12 Apr 2023 12:28:29 +0200 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 06326d810..6ecbf7a2d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Coverage](https://codecov.io/gh/ZIB-IOL/Boscia.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/ZIB-IOL/Boscia.jl) [![Genie Downloads](https://shields.io/endpoint?url=https://pkgs.genieframework.com/api/v1/badge/Boscia)](https://pkgs.genieframework.com?packages=Boscia) -A package for Branch-and-Bound on top of Frank-Wolfe methods. +A solver for Mixed-Integer Convex Optimization that uses Frank-Wolfe methods for convex relaxations and a branch-and-bound algorithm. ## Overview @@ -23,8 +23,16 @@ A paper presenting the package with mathematical explanations and numerous examp ## Installation -Add Boscia in its current state with: +Add the Boscia stable release with: + +```julia +import Pkg +Pkg.add("Boscia") +``` + +Or get the latest master branch with: ```julia +import Pkg Pkg.add(url="https://github.com/ZIB-IOL/Boscia.jl", rev="main") ```