You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h1>Changelog<aclass="headerlink" href="#changelog" title="Link to this heading">¶</a></h1>
287
287
<sectionid="id1">
288
-
<h2>0.5.0<aclass="headerlink" href="#id1" title="Link to this heading">¶</a></h2>
288
+
<h2>0.5.1<aclass="headerlink" href="#id1" title="Link to this heading">¶</a></h2>
289
+
<ulclass="simple">
290
+
<li><p>Support llvmlite 0.45.0</p></li>
291
+
</ul>
292
+
</section>
293
+
<sectionid="id2">
294
+
<h2>0.5.0<aclass="headerlink" href="#id2" title="Link to this heading">¶</a></h2>
289
295
<ulclass="simple">
290
296
<li><p>Overhaul of the nonlinear programming interface and now PyOptInterface can solve nonlinear programming problems with COPT, Gurobi and IPOPT.</p></li>
291
297
<li><p>Use <codeclass="docutils literal notranslate"><spanclass="pre">model.add_linear_constraint(x+y,</span><spanclass="pre">(1.0,</span><spanclass="pre">2.0))</span></code> to add two-sided linear constraints</p></li>
292
298
<li><p>Add <codeclass="docutils literal notranslate"><spanclass="pre">poi.ScalarAffineFunction.from_numpy</span></code> to create scalar affine functions from numpy arrays quickly</p></li>
293
299
</ul>
294
300
</section>
295
-
<sectionid="id2">
296
-
<h2>0.4.1<aclass="headerlink" href="#id2" title="Link to this heading">¶</a></h2>
301
+
<sectionid="id3">
302
+
<h2>0.4.1<aclass="headerlink" href="#id3" title="Link to this heading">¶</a></h2>
297
303
<ulclass="simple">
298
304
<li><p>Support writing solution files in HiGHS</p></li>
299
305
<li><p>Pass the names of variables and constraints to HiGHS</p></li>
300
306
<li><p>Add <codeclass="docutils literal notranslate"><spanclass="pre">model.close()</span></code> and <codeclass="docutils literal notranslate"><spanclass="pre">env.close()</span></code> methods to allow users release the license of commercial solvers manually</p></li>
301
307
</ul>
302
308
</section>
303
-
<sectionid="id3">
304
-
<h2>0.4.0<aclass="headerlink" href="#id3" title="Link to this heading">¶</a></h2>
309
+
<sectionid="id4">
310
+
<h2>0.4.0<aclass="headerlink" href="#id4" title="Link to this heading">¶</a></h2>
<li><p>Add <codeclass="docutils literal notranslate"><spanclass="pre">model.computeIIS</span></code> and IIS related attributes for constraint and variable</p></li>
@@ -311,82 +317,82 @@ <h2>0.4.0<a class="headerlink" href="#id3" title="Link to this heading">¶</a></
311
317
<li><p>Supports HiGHS 1.9.0 and Mosek 11</p></li>
312
318
</ul>
313
319
</section>
314
-
<sectionid="id4">
315
-
<h2>0.3.0<aclass="headerlink" href="#id4" title="Link to this heading">¶</a></h2>
320
+
<sectionid="id5">
321
+
<h2>0.3.0<aclass="headerlink" href="#id5" title="Link to this heading">¶</a></h2>
316
322
<ulclass="simple">
317
323
<li><p>Add <codeclass="docutils literal notranslate"><spanclass="pre">model.set_variable_bounds(variable,</span><spanclass="pre">lb,</span><spanclass="pre">ub)</span></code> to make it easier to change variable bounds</p></li>
318
324
<li><p>Introduce nonlinear programming support of Ipopt</p></li>
319
325
<li><p>Support new versions of optimizers</p></li>
320
326
<li><p>Various minor bug fixes</p></li>
321
327
</ul>
322
328
</section>
323
-
<sectionid="id5">
324
-
<h2>0.2.8<aclass="headerlink" href="#id5" title="Link to this heading">¶</a></h2>
329
+
<sectionid="id6">
330
+
<h2>0.2.8<aclass="headerlink" href="#id6" title="Link to this heading">¶</a></h2>
325
331
<ulclass="simple">
326
332
<li><p>Fix bugs in HiGHS and MOSEK when the quadratic objective function contains nondiagonal terms</p></li>
327
333
</ul>
328
334
</section>
329
-
<sectionid="id6">
330
-
<h2>0.2.7<aclass="headerlink" href="#id6" title="Link to this heading">¶</a></h2>
335
+
<sectionid="id7">
336
+
<h2>0.2.7<aclass="headerlink" href="#id7" title="Link to this heading">¶</a></h2>
331
337
<ulclass="simple">
332
338
<li><p>Fix bugs in HiGHS termination status</p></li>
333
339
</ul>
334
340
</section>
335
-
<sectionid="id7">
336
-
<h2>0.2.6<aclass="headerlink" href="#id7" title="Link to this heading">¶</a></h2>
341
+
<sectionid="id8">
342
+
<h2>0.2.6<aclass="headerlink" href="#id8" title="Link to this heading">¶</a></h2>
337
343
<ulclass="simple">
338
344
<li><p>Add rotated second-order cone support for COPT, Gurobi and Mosek</p></li>
339
345
<li><p>Add exponential cone support for COPT and Mosek</p></li>
340
346
<li><p>Requires COPT version >= 7.1.4 to support exponential cone</p></li>
341
347
</ul>
342
348
</section>
343
-
<sectionid="id8">
344
-
<h2>0.2.5<aclass="headerlink" href="#id8" title="Link to this heading">¶</a></h2>
349
+
<sectionid="id9">
350
+
<h2>0.2.5<aclass="headerlink" href="#id9" title="Link to this heading">¶</a></h2>
345
351
<ulclass="simple">
346
352
<li><p>Fix <codeclass="docutils literal notranslate"><spanclass="pre">add_linear_constraint</span></code> of HiGHS optimizer to consider the constant term in expression correctly</p></li>
0 commit comments