Stopping Criteria (Implementation)#

class DataExhaustedStoppingCriteria(*args: 'Any', **kwargs: 'Any')[source]#

Bases: StoppingCriteria

property next: bool#
Description
Determines whether the experiment should continue into another step.
Currently always returns True.
Returns:

Should the experiment continue? (True)

Return type:

bool

class TimeStoppingCriteria(*args: 'Any', **kwargs: 'Any')[source]#

Bases: StoppingCriteria

property next: bool#
Description
Determines whether the experiment should continue into another step.
Currently always returns True.
Returns:

Should the experiment continue? (True)

Return type:

bool

stop_time: float = NOTSET#