| |
| |
| |
|
|
| """ |
| Formulation described in: |
|
|
| Garver, L. L. (1962). Power generation scheduling by integer |
| programming-development of theory. Transactions of the American Institute |
| of Electrical Engineers. Part III: Power Apparatus and Systems, 81(3), 730-734. |
| DOI: https://doi.org/10.1109/AIEEPAS.1962.4501405 |
|
|
| """ |
| module Gar1962 |
|
|
| import ..PiecewiseLinearCostsFormulation |
| import ..ProductionVarsFormulation |
| import ..StatusVarsFormulation |
|
|
| struct ProdVars <: ProductionVarsFormulation end |
| struct PwlCosts <: PiecewiseLinearCostsFormulation end |
| struct StatusVars <: StatusVarsFormulation end |
|
|
| end |
|
|