Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/28/09 19:12:08 (15 years ago)
Author:
gkronber
Message:

Added statements to set the input variables of models in all regression engines. #712

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.GP.StructureIdentification/3.3/AlgorithmBase.cs

    r2161 r2201  
    437437        double impact = ((DoubleData)row[1]).Data;
    438438        model.SetVariableEvaluationImpact(variableName, impact);
     439        model.AddInputVariables(variableName);
    439440      }
    440441      foreach (ItemList row in qualityImpacts) {
     
    442443        double impact = ((DoubleData)row[1]).Data;
    443444        model.SetVariableQualityImpact(variableName, impact);
     445        model.AddInputVariables(variableName);
    444446      }
    445447      Engine.GlobalScope.RemoveSubScope(bestModelScope);
Note: See TracChangeset for help on using the changeset viewer.