Total Complexity | 2 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
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 |