clingo[LP] extends the ASP solver clingo with linear constraints as dealt with in Linear Programming (LP).
Project description
clingo[LP]
clingo[LP]
extends the ASP solver clingo
with linear constraints as dealt with in Linear Programming (LP).
Install
Install via conda:
conda install -c potassco -c conda-forge clingo-lp
CPLEX
The clingoLP propagator requires an LP solver. The default is lpsolve but cplex can be used optionally.
IBM also provides a promotional version of cplex
that is sufficient to solve small problems limited to 1000 variables and 1000 constraints.
conda install -c ibmdecisionoptimization cplex`
To solve larger problems, you need to use the full version of CPLEX Studio.
Syntax
LP constraints can be expressed as follows:
LP constraints | ClingoLP Syntax |
---|---|
w1x1+...+wnxn >= k | &sum{ w1* x1; ...; wn* xn} >= k |
domain(x)={l,...,u} | &dom{ l.. u} = x |
maximize: w1x1+...+wnxn | &maximize{ w1* x1; ...; wn* x1} (minimize analogous) |
To avoid syntax clashes, you must quote "
real numbers. Instead of 1.5
write "1.5"
.
Usage
clingoLP [number] [options] [files]
Options:
--lp-solver=<arg> : Set LP solver
<arg>: {lps,cplx} (default lp-solver=lps)
--[no-]show-lp-solution : Show LP solution and value of objective function
--accuracy=n : Set decimal position of LP solver accuracy (default accuracy=3)
--epsilon=n,m : Set epsilon to convert lhs > k into lhs >= k+n*10^-m (default epsilon=1,3)
--[no-]trace : Enables detailed output of theory propagation
--core-confl=n : Searches for core conflicts if at least n% of the theory atoms are decided
(default core-confl=20)
--prop-heur=n : Starts a solve call of the LP solver if at least n% of the theory atoms are decided
(default prop-heur=0)
--[no-]ilp : Sets the LP solver to solve an Integer Linear Programming (ILP) problem
Example:
clingoLP 0 --show-lp-solution example_encoding.lp example_instance.lp
For more options you can ask for help as follows:
clingoLP --help
Publication
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file clingo-lp-0.2.0.tar.gz
.
File metadata
- Download URL: clingo-lp-0.2.0.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ca85f015fa6f83531ea4cdf47eccd455ef63755e29ea8f1c1268ec70e92e867 |
|
MD5 | b4379912ffadf068c0fff2edac150d3b |
|
BLAKE2b-256 | 84005a95dee7ce6caaa46cbcbd02aaa60907dced8943fac211f143865baac948 |
File details
Details for the file clingo_lp-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: clingo_lp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53738c2306542d534f778e849fafc248d699f0071761b27a3e10571c212eaac4 |
|
MD5 | 33084578f9709ee68673c8032c0fbe74 |
|
BLAKE2b-256 | 17fa17286ea010f339fe957f62f2bb0950b9677bb29d9d4ed2ceaf90d92a4599 |