| Total Complexity | 0 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 2 | |||
| 3 | """ |
||
| 4 | This module is designed to hold flows with their classes and |
||
| 5 | associated individual constraints (blocks) and groupings. |
||
| 6 | Currently, the design of the `Flow`s is that there is only one |
||
| 7 | class but object are different based on parameters. |
||
| 8 | This is subject to change in the future. |
||
| 9 | |||
| 10 | Note that only mature code is imported, |
||
| 11 | experimental code should be included in oemof.experimental. |
||
| 12 | """ |
||
| 13 | |||
| 14 | from . import experimental |
||
| 15 | from ._flow import Flow |
||
| 16 | from ._investment_flow import InvestmentFlow |
||
| 17 | from ._non_convex_flow import NonConvexFlow |
||
| 18 | |||
| 19 | __all__ = [ |
||
| 20 | "experimental", |
||
| 21 | "Flow", |
||
| 22 | "InvestmentFlow", |
||
| 23 | "NonConvexFlow", |
||
| 24 | ] |
||
| 25 |