From 1ccf929428928129e123f3ce7ee8a7f4cf3fd2d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Sun, 10 May 2020 12:01:47 +0200 Subject: [PATCH] Remove recommendation to call package MathOptInterfaceXXX --- docs/src/apimanual.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/src/apimanual.md b/docs/src/apimanual.md index 04dacd881e..8a1435ffa9 100644 --- a/docs/src/apimanual.md +++ b/docs/src/apimanual.md @@ -1288,10 +1288,7 @@ solver is written in Julia, for example). The guideline for naming the file containing the MOI wrapper is `src/MOI_wrapper.jl` and `test/MOI_wrapper.jl` for the tests. If the MOI wrapper implementation is spread in several files, they should be stored in a `src/MOI_wrapper` folder and included by a -`src/MOI_wrapper/MOI_wrapper.jl` file. In some cases it may be more appropriate -to host the MOI wrapper in its own package; in this case it is recommended that -the MOI wrapper package be named `MathOptInterfaceXXX` where `XXX` is the solver -name. +`src/MOI_wrapper/MOI_wrapper.jl` file. By convention, optimizers should not be exported and should be named `PackageName.Optimizer`. For example, `CPLEX.Optimizer`, `Gurobi.Optimizer`, and