public interface EvaluatorCounter
The interface responsible for counting fitness evaluation calls.
Modifier and Type | Method and Description |
---|---|
static EvaluatorCounter |
empty() |
long |
get()
Gets the counter value.
|
void |
increment()
Increments the counter.
|
static EvaluatorCounter |
simpleCounter() |
void increment()
Increments the counter. Method implementation should be thread-safe.
long get()
Gets the counter value. Method implementation should be thread-safe.
static EvaluatorCounter empty()
static EvaluatorCounter simpleCounter()