BasisFunctionLike   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 9
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A functions_factory() 0 3 1
A derivatives_factory() 0 3 1
1
class BasisFunctionLike(object):
2
3
    @classmethod
4
    def derivatives_factory(cls, coef, *args, **kwargs):
5
        raise NotImplementedError
6
7
    @classmethod
8
    def functions_factory(cls, coef, *args, **kwargs):
9
        raise NotImplementedError
10