Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/13/15 18:47:19 (9 years ago)
Author:
mkommend
Message:

#2174: First working version of refactored programmable problem.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/New/Scripts/CompiledProblemDefinition.cs

    r11739 r11753  
    2121
    2222using System;
    23 using System.Collections.Generic;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
     
    5251    }
    5352
     53    public CompiledProblemDefinition() { }
    5454    protected CompiledProblemDefinition(IEncoding encoding) : this(encoding, "ProblemDefinition") { }
    5555    protected CompiledProblemDefinition(IEncoding encoding, string name) : this(encoding, name, string.Empty) { }
     
    5757      : base(name, description) {
    5858      Encoding = encoding;
    59       //TODO call initialize and set refactor ctors
    6059    }
    61 
    62     public abstract IEnumerable<Individual> GetNeighbors(Individual vector, IRandom random);
    6360  }
    6461}
Note: See TracChangeset for help on using the changeset viewer.