forked from coin-or/Clp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml
96 lines (92 loc) · 3.13 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
Description:
Slug: Clp
ShortName: Clp
LongName: COIN-OR LP Solver
ShortDescription: A solver for linear programs
LongDescription: |2
Clp (*C*oin-or *l*inear *p*rogramming) is an open-source linear programming solver.
It is primarily meant to be used as a callable library, but a basic, stand-alone executable
version is also available. It is designed to find solutions of mathematical optimization
problems of the form
minimize c\'x
such that lhs ≤ Ax ≤ rhs
and lb ≤ x ≤ ub
CLP includes primal and dual Simplex solvers.
Both dual and primal algorithms can use matrix storage methods provided by the user (0-1 and
network matrices are already supported in addition to the default sparse matrix).
The dual algorithm has Dantzig and Steepest edge row pivot choices; new ones may be provided
by the user. The same is true for the column pivot choice of the primal algorithm.
The primal can also use a non linear cost which should work for piecewise linear convex
functions. CLP also includes a barrier method for solving LPs.
Manager: Julian Hall, [email protected]
Homepage: https://github.com/coin-or/Clp
License: Eclipse Public License 2.0
LicenseURL: http://www.opensource.org/licenses/EPL-2.0
Zenodo: 173496299
IncludedIn:
Package: Clp
Language:
- C++
Categories:
- Optimization deterministic linear continuous
Dependencies:
- Description: ThirdParty wrapper for building ASL
URL: https://github.com/coin-or-tools/ThirdParty-ASL
Version: 2.0
Required: Optional
- Description: ThirdParty wrapper for building Mumps
URL: https://github.com/coin-or-tools/ThirdParty-Mumps
Version: 3.0
Required: Optional
- Description: ThirdParty wrapper for building Glpk
URL: https://github.com/coin-or-tools/ThirdParty-Glpk
Version: master
Required: Optional
- Description: Netlib data files
URL: https://github.com/coin-or-tools/Data-Netlib
Version: master
Required: Required
- Description: Sample data files
URL: https://github.com/coin-or-tools/Data-Sample
Version: master
Required: Required
- Description: COIN-OR Utilities
URL: https://github.com/coin-or/CoinUtils
Version: master
Required: Required
- Description: Open Solver Interface
URL: https://github.com/coin-or/Osi
Version: master
Required: Required
- Description: Basic Linear Algebra Subroutines (BLAS)
URL: http://www.netlib.org/blas
Required: Recommended
- Description: Linear Algebra Package (LAPACK)
URL: http://www.netlib.org/lapack
Required: Recommended
- Description: GNU Readline
Required: Recommended
- Description: GNU History
Required: Recommended
DevelopmentStatus:
activityStatus: Active
maturityLevel: 5
testedPlatforms:
- operatingSystem: Linux
compiler: gcc
- operatingSystem: Mac OS X
compiler:
- gcc
- clang
- operatingSystem: Microsoft Windows
compiler: cl
- operatingSystem: Microsoft Windows with MSys2
compiler:
- gcc
- cl
- icl
- operatingSystem: Microsoft Windows Subsystem for Linux
compiler:
- gcc
- cl
- icl