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

hyperactive.candidate.candidate_noMem   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

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

1 Method

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