High-performance Mixed-Integer Programming solver (Professional Edition)
Project description
MIPSolver Pro
High-performance C++ Mixed-Integer Programming solver with Python interface.
Features
- Optimized Branch & Bound algorithm
- Support for MPS standard file format
- Simple and easy-to-use Python API
- Commercial-grade algorithm protection
- Cross-platform support (Windows/Linux/macOS)
Quick Start
import mipsolver
# Create optimization problem
problem = mipsolver.Problem("MyProblem", mipsolver.ObjectiveType.MAXIMIZE)
# Add binary variables
x0 = problem.add_variable("x0", mipsolver.VariableType.BINARY)
x1 = problem.add_variable("x1", mipsolver.VariableType.BINARY)
# Set objective function
problem.set_objective_coefficient(x0, 5.0)
problem.set_objective_coefficient(x1, 8.0)
# Add constraints
c0 = problem.add_constraint("c0", mipsolver.ConstraintType.LESS_EQUAL, 10.0)
problem.add_constraint_coefficient(c0, x0, 2.0)
problem.add_constraint_coefficient(c0, x1, 4.0)
# Solve
solver = mipsolver.Solver()
solution = solver.solve(problem)
print(f"Optimal solution: {solution.get_objective_value()}")
print(f"Variable values: {solution.get_values()}")
License
This software is commercial software protected by intellectual property rights. Use of this software indicates agreement to the relevant license terms.
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mipsolver_pro-1.0.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: mipsolver_pro-1.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 438.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9655009eac59463add0b70be2887700ecfefd27e0796a2adf03b78acadc261d
|
|
| MD5 |
a7451266d6682540854d1a9d13632cbe
|
|
| BLAKE2b-256 |
b93ed137bd92a3df042774598088c2971beabe0da487a80e385a7ada4f245e36
|