Skip to content

Commit

Permalink
#3129: Fix compilation error in RegressionProblemData.
Browse files Browse the repository at this point in the history
git-svn-id: https://src.heuristiclab.com/svn/core/trunk@18000 2abd9481-f8db-48e9-bd25-06bc13291c1b
  • Loading branch information
mkommend committed Jun 28, 2021
1 parent 8adc492 commit 4f122c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ protected RegressionProblemData(StorableConstructorFlag _) : base(_) { }
private void AfterDeserialization() {
if (!Parameters.ContainsKey(VariableRangesParameterName)) {
var variableRanges = Dataset.GetVariableRanges();
Parameters.Add(new FixedValueParameter<IntervalCollection>(VariableRangesParameterName, intervalCollection));
Parameters.Add(new FixedValueParameter<IntervalCollection>(VariableRangesParameterName, variableRanges));
}

RegisterParameterEvents();
Expand Down

0 comments on commit 4f122c0

Please sign in to comment.