Skip to main content

A Rust-powered linear programming library for Python.

Project description

Dantzig: A Lightweight, Concise LP Solver

Dantzig is a lightweight and concise linear programming solver suitable for small and large-scale problems alike.

Dantzig is implemented in both Rust and Python, meaning you get the expressiveness and flexibility of a Python frontend plus the raw computing speed of a Rust backend.

Dantzig supports

  • Arbitrarily restricted variables, including completely unrestricted free variables
  • ==, <=, and >= constraints
  • Both minimization and maximization problems
  • SIMD-accelerated linear algebra operations
  • Modern Python type-checking

Dantzig is currently beta software. Please help us improve the library by reporting bugs through GitHub issues.

Installation

Dantzig can be installed with pip

pip install dantzig 

for Python >=3.10.

Design Philosophies

Dantzig prides itself on being both lightweight (zero-dependency) and concise. The API is designed to be extremely expressive and terse, saving you keystrokes without sacrificing clarity. To this end, Dantzig provides several short aliases for common classes and methods.

A few examples are listed below,

  • Var == Variable
  • Min == Minimize
  • Max == Maximize
  • Var.free() == Variable(lb=0.0, ub=0.0)
  • Var.nn() == Var.nonneg() == Variable(lb=0.0, ub=None)
  • Var.np() == Var.nonpos() == Variable(lb=None, ub=0.0)

Examples

import dantzig as dz

x = dz.Variable(lb=0.0, ub=None)
y = dz.Variable(lb=0.0, ub=None)
z = dz.Variable(lb=0.0, ub=None)

soln = dz.Minimize(x + y - z).subject_to(x + y + z == 1).solve()

assert soln.objective_value == -1.0
assert soln[x] == 0.0
assert soln[y] == 0.0
assert soln[z] == 1.0

Using aliases, the previous example can alternately be written

from dantzig import Min, Var

x = Var.nn()
y = Var.nn()
z = Var.nn()

soln = Min(x + y - z).st(x + y + z == 1)

Road Map

  • Mixed integer linear programing
  • Built-in support for multidimensional variables and interoperability with numpy
  • More efficient matrix storage, ie. CSR format
  • Code profiling to identify and resolve performance bottlenecks
  • Support for alternate algorithms beyond simplex

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dantzig-0.1.0.tar.gz (17.3 kB view hashes)

Uploaded Source

Built Distributions

dantzig-0.1.0-cp310-abi3-win_amd64.whl (179.2 kB view hashes)

Uploaded CPython 3.10+ Windows x86-64

dantzig-0.1.0-cp310-abi3-manylinux_2_34_x86_64.whl (252.7 kB view hashes)

Uploaded CPython 3.10+ manylinux: glibc 2.34+ x86-64

dantzig-0.1.0-cp310-abi3-macosx_11_0_arm64.whl (226.8 kB view hashes)

Uploaded CPython 3.10+ macOS 11.0+ ARM64

dantzig-0.1.0-cp310-abi3-macosx_10_7_x86_64.whl (243.2 kB view hashes)

Uploaded CPython 3.10+ macOS 10.7+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page