[Pkg-octave-commit] rev 845 - trunk/www

Rafael Laboissiere rafael at alioth.debian.org
Tue Feb 20 16:00:45 CET 2007


Author: rafael
Date: 2007-02-20 16:00:44 +0100 (Tue, 20 Feb 2007)
New Revision: 845

Modified:
   trunk/www/index.html.in
Log:
Added entries for lp_solve and LIPSOL in the "Other interesting Octave
stuff" section 


Modified: trunk/www/index.html.in
===================================================================
--- trunk/www/index.html.in	2007-02-19 01:37:03 UTC (rev 844)
+++ trunk/www/index.html.in	2007-02-20 15:00:44 UTC (rev 845)
@@ -225,6 +225,29 @@
 
     <ul>
       <li>
+        <a href="http://lpsolve.sourceforge.net/5.5/">Mixed Integer Linear
+        Programming (MILP) solver</a>: lp_solve solves pure linear, (mixed)
+        integer/binary, semi-continuous and special ordered sets (SOS)
+        models. Note the word linear. This means that equations must be of
+        the first order. 5 * x - 3 * y is an example. However x * y is not
+        linear and cannot be handled by lp_solve. Both the objective
+        function and the constraints have this restriction. Via the
+        Branch-and-bound algorithm, it can handle integer variables (see
+        integer variables), semi-continuous variables (see semi-continuous
+        variables) and Special Ordered Sets (see Special Ordered Sets
+        (SOS)).
+      </li>
+      <li>
+        <a
+        href="http://www.caam.rice.edu/~zhang/lipsol/">Linear-programming
+        Interior Point SOLvers</a>: LIPSOL is a Matlab-based package for
+        solving linear programs by interior-Point methods. For
+        computational efficiency it uses a Fortran package by Esmond Ng and
+        Barry Peyton at ORNL to solve large sparse linear systems. LIPSOL
+        has been tested on the Netlib set of linear programs and has
+        effectively solved all 95 Netlib problems.
+      </li>
+      <li>
         <a href="http://www.math.mcgill.ca/loisel/octave-workshop/">Octave
         Workshop</a>: integrated development environment for the GNU Octave
         programming language, the open-source programming language for




More information about the Pkg-octave-commit mailing list