I am using the blueprint_example template, and there is the following chunk of code:
Parameter(
name="cutoff_time",
param_range=[0.01, 1.0],
constraints={"low": 0.01, "high": 1.0},
number_points=2,
distribution="uniform",
param_type="continuous",
depends_on={"name": "coherence_time", "function": linear_dep},
# todo: test if this dependency is also used in each generation
),
it seems that the dependency is not implemented in each generation, but the parameter value for cutoff_time goes way beyond the limit set by the dependency.
I am using the blueprint_example template, and there is the following chunk of code:
Parameter(
name="cutoff_time",
param_range=[0.01, 1.0],
constraints={"low": 0.01, "high": 1.0},
number_points=2,
distribution="uniform",
param_type="continuous",
depends_on={"name": "coherence_time", "function": linear_dep},
# todo: test if this dependency is also used in each generation
),
it seems that the dependency is not implemented in each generation, but the parameter value for cutoff_time goes way beyond the limit set by the dependency.