Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/08/09 11:11:50 (15 years ago)
Author:
gkronber
Message:

Extended IAnalyzerModel and the default implementation AnalyzerModel to hold a dictionary of result values and extended GP algorithms for time-series prognosis and classification to store specific results (TheilInequalityCoefficient and Accuracy in the model) (#736). Also prepared IAnalyzerModel and AnalyzerModel and modeling algorithms to store meta-information about models (#731).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/StandardGP.cs

    r2341 r2344  
    145145    }
    146146
    147     private IAnalyzerModel CreateGPModel() {
     147    protected virtual IAnalyzerModel CreateGPModel() {
    148148      IScope bestModelScope = Engine.GlobalScope.SubScopes[0];
    149       return DefaultStructureIdentificationAlgorithmOperators.CreateGPModel(bestModelScope);
     149      IAnalyzerModel model = DefaultStructureIdentificationAlgorithmOperators.CreateGPModel(bestModelScope);
     150      return model;
    150151    }
    151152  }
Note: See TracChangeset for help on using the changeset viewer.