Passed
Pull Request — dev (#836)
by Uwe
03:17 queued 01:53
created

solph.components.experimental   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 10
dl 0
loc 20
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
"""
3
This module is designed to hold in-development components with their classes
4
and associated individual constraints (blocks) and groupings.
5
6
Requirements for documentation and unit tests are relaxed,
7
so code referred to within this module might not have production quality.
8
"""
9
10
from ._generic_caes import GenericCAES
11
from ._link import Link
12
from ._piecewise_linear_transformer import PiecewiseLinearTransformer
13
from ._sink_dsm import SinkDSM
14
15
__all__ = [
16
    "GenericCAES",
17
    "Link",
18
    "PiecewiseLinearTransformer",
19
    "SinkDSM",
20
]
21