solph.components.experimental   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 16
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 ._piecewise_linear_converter import PiecewiseLinearConverter
12
13
__all__ = [
14
    "GenericCAES",
15
    "PiecewiseLinearConverter",
16
]
17