Passed
Push — master ( 193da7...4bb259 )
by Simon
01:36 queued 11s
created

hyperactive.candidate.candidate_shortMem   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A CandidateShortMem.__init__() 0 5 1
1
# Author: Simon Blanke
2
# Email: [email protected]
3
# License: MIT License
4
5
from .candidate_base import Candidate
6
7
8
class CandidateShortMem(Candidate):
9
    def __init__(
10
        self, obj_func, func_para, search_space, init_para, memory, verb, hyperactive
11
    ):
12
        super().__init__(
13
            obj_func, func_para, search_space, init_para, memory, verb, hyperactive
14
        )
15