File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,6 @@ deps/artelys*
55deps /build.log
66test /* .mps
77deps /knitro *
8+
9+ # VSCode settings
10+ .vscode /
Original file line number Diff line number Diff line change @@ -130,7 +130,16 @@ model = Model(KNITROMathOptInterfaceExt.Optimizer)
130130## Use with AMPL
131131
132132To use KNITRO with [ AmplNLWriter.jl] ( https://github.com/jump-dev/AmplNLWriter.jl ) ,
133- use ` KNITRO.amplexe ` :
133+ use ` KNITRO_jll.knitroampl ` :
134+
135+ ``` julia
136+ using JuMP
137+ import AmplNLWriter
138+ import KNITRO_jll
139+ model = Model (() -> AmplNLWriter. Optimizer (KNITRO_jll. knitroampl, [" outlev=3" ]))
140+ ```
141+
142+ However, if you have installed KNITRO manually (see above), you will need to use ` KNITRO.amplexe ` instead:
134143
135144``` julia
136145using JuMP
You can’t perform that action at this time.
0 commit comments