Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/09 12:52:52 (15 years ago)
Author:
gkronber
Message:

Moved simple evaluators from plugin SVM to plugin Modeling. #635

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/DispatcherBase.cs

    r1857 r1869  
    4040  public abstract class DispatcherBase : IDispatcher {
    4141    private IStore store;
    42 
    43     private static int MaxGenerations {
    44       get { return 3; }
    45     }
    46 
    47     private static int MaxEvaluatedSolutions {
    48       get { return 3000; }
    49     }
    50 
    5142    public DispatcherBase(IStore store) {
    5243      this.store = store;
     
    8879
    8980    private Execution CreateExecution(Problem problem, int targetVariable, IAlgorithm algorithm) {
    90       //switch (algorithm) {
    91       //  case Algorithm.StandardGpRegression: {
    92       //      var algo = new HeuristicLab.GP.StructureIdentification.StandardGP();
    93       //      SetComplexityParameters(algo, complexity);
    94       //      SetProblemParameters(algo, problem, targetVariable);
    95       //      algo.PopulationSize = 10000;
    96       //      algo.MaxGenerations = MaxGenerations;
    97       //      Execution exec = new Execution(algo.Engine);
    98       //      exec.Description = "StandardGP - Complexity: " + complexity;
    99       //      return exec;
    100       //    }
    10181      SetProblemParameters(algorithm, problem, targetVariable);
    10282      Execution exec = new Execution(algorithm.Engine);
Note: See TracChangeset for help on using the changeset viewer.