Skip to content

Instantly share code, notes, and snippets.

@mwerezak
mwerezak / python_mip_resource_constrained_scheduling_example.py
Last active March 11, 2023 15:23
Resource Constrained Project Scheduling
"""
Resource Constrained Project Scheduling
<https://docs.python-mip.com/en/latest/examples.html>
"""
from __future__ import annotations
from dataclasses import dataclass
from typing import TYPE_CHECKING
@mwerezak
mwerezak / python_mip_sos_example.py
Last active March 14, 2023 15:49
Plant Location with Non-Linear Costs
"""
Plant Location with Non-Linear Costs
<https://python-mip.readthedocs.io/en/latest/examples.html#exsos>
"""
from __future__ import annotations
import math
from dataclasses import dataclass
from typing import TYPE_CHECKING