1#============================================================================================
2
3CoMISo 1.0-rc1:
4- Initial release
5
6CoMISo 1.1:
7- Only 2 external dependencies: header libraries GMM++ and Eigen3
8- Efficient re-solve with updated (system and/or constraints) right hand sides
9
10
11Features:
12 - /NSolver     -- simple non-linear solver c++ interfaces:
13    * Gurobi [1],
14    * IPOPT [2],
15    * TAO/PETSc [3],
16    * CPLEX [4],
17    * an the inhouse Newton Solver and more!
18
19 - /EigenSolver -- interface for large-scale eigenvalue problems ARPACK [5]
20
21 - /Solver      -- several interfaces for common linear system solvers:
22    * sparse Cholesky (Cholmod, LDLT)
23    * SparseQR [6]
24    * TAUCS [7]
25    * UMFPACK  [8]
26    and of course the Constrained and Constrained Mixed Integer Solvers (CoMISo)
27
28
29
30References:
31[1] www.gurobi.com
32[2] https://projects.coin-or.org/Ipopt
33[3] http://www.mcs.anl.gov/research/projects/tao/
34[4] http://www-01.ibm.com/software/integration/optimization/cplex-optimizer/
35[5] http://www.caam.rice.edu/software/ARPACK/
36[6] http://www.cise.ufl.edu/research/sparse/SPQR/
37[7] http://www.tau.ac.il/~stoledo/taucs/
38[8] http://www.cise.ufl.edu/research/sparse/umfpack/
39