Changeset 321
- Timestamp:
- 06/18/08 11:30:28 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Functions/BakedTreeEvaluator.cs
r319 r321 29 29 30 30 namespace HeuristicLab.Functions { 31 internal class BakedTreeEvaluator : StorableBase{32 private structInstr {31 internal class BakedTreeEvaluator { 32 private class Instr { 33 33 public double d_arg0; 34 34 public int i_arg0; … … 42 42 private Dataset dataset; 43 43 private int sampleIndex; 44 45 // for persistence mechanism only46 public BakedTreeEvaluator() {47 }48 44 49 45 public BakedTreeEvaluator(List<LightWeightFunction> linearRepresentation) { … … 230 226 } 231 227 } 232 233 public override object Clone(IDictionary<Guid, object> clonedObjects) {234 throw new NotImplementedException();235 }236 228 } 237 229 }
Note: See TracChangeset
for help on using the changeset viewer.