As a scientist user, I want to be able to specify an enable function to decide whether to run an experiment or not
Plan
Replace freq with enabled, which should continue to default to always running but can take a niladic function which returns true or false. Example could use some kind of feature flag
Provide some kind of useful default to allow users to quickly specify a frequency-based test.
Done
Scientist API::
should allow user to specify a niladic function to control experiment running.
should allow user to use pre-existing frequency-based function defaults to determine whether to run an experiment.
As a scientist user, I want to be able to specify an
enable
function to decide whether to run an experiment or notPlan
freq
withenabled
, which should continue to default to always running but can take a niladic function which returns true or false. Example could use some kind of feature flagDone
Scientist API::