Passed
Pull Request — dev (#821)
by Uwe
02:17
created

solph.flows   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 10
dl 0
loc 24
rs 10
c 0
b 0
f 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