Changeset 2977 for trunk/sources/HeuristicLab.Modeling
- Timestamp:
- 03/09/10 09:40:52 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Modeling/3.2
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Modeling/3.2/HeuristicLab.Modeling-3.2.csproj
r2808 r2977 84 84 <Compile Include="AnalyzerModel.cs" /> 85 85 <Compile Include="BestSolutionStorer.cs" /> 86 <Compile Include="LinearScaler.cs" /> 86 87 <Compile Include="SimpleStableCorrelationCoefficientEvaluator.cs" /> 87 88 <Compile Include="SimplePearsonCorrelationCoefficientEvaluator.cs" /> -
trunk/sources/HeuristicLab.Modeling/3.2/SimpleEvaluatorBase.cs
r2357 r2977 9 9 namespace HeuristicLab.Modeling { 10 10 public abstract class SimpleEvaluatorBase : OperatorBase { 11 p rotectedconst int ORIGINAL_INDEX = 0;12 p rotectedconst int ESTIMATION_INDEX = 1;11 public const int ORIGINAL_INDEX = 0; 12 public const int ESTIMATION_INDEX = 1; 13 13 14 14 public virtual string OutputVariableName {
Note: See TracChangeset
for help on using the changeset viewer.