-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathDESCRIPTION
43 lines (43 loc) · 1.32 KB
/
DESCRIPTION
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
Package: ompr
Type: Package
Title: Model and Solve Mixed Integer Linear Programs
Version: 1.0.4.9000
Authors@R: person("Dirk", "Schumacher", email = "[email protected]",
role = c("aut", "cre"))
Description: Model mixed integer linear programs in an algebraic way directly in R.
The model is solver-independent and thus offers the possibility
to solve a model with different solvers. It currently only supports
linear constraints and objective functions. See the 'ompr'
website <https://dirkschumacher.github.io/ompr/> for more information,
documentation and examples.
License: MIT + file LICENSE
RoxygenNote: 7.2.3
Encoding: UTF-8
URL: https://github.com/dirkschumacher/ompr
BugReports: https://github.com/dirkschumacher/ompr/issues
Depends: R (>= 3.5.0)
Imports:
lazyeval,
rlang (>= 0.2.0),
listcomp (>= 0.4.0),
methods,
data.table,
Matrix,
fastmap
Suggests:
covr,
magrittr,
testthat
ByteCompile: Yes
Collate:
'abstract-model-impl.R'
'helper.R'
'linear-optimization-model-impl.R'
'linear-optimization-model-linear-constraints.R'
'linear-optimization-model-linear-functions.R'
'model-api.R'
'milp-impl.R'
'milp-linearopt-variables.R'
'ompr-package.R'
'solution-api.R'
'solution-impl.R'