balance_engine 0.0.2

Production planning and optimization engine using linear programming to balance supply with demand while minimizing costs and respecting resource constraints
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
from .engine import *


__doc__ = engine.__doc__
if hasattr(engine, "__all__"):
    __all__ = engine.__all__


def some_init():
    """Initialize the engine module."""
    engine.init()
    print("Engine is being initialized...")