Changeset 9352 for branches/LearningClassifierSystems/HeuristicLab.Optimization.Operators.LCS/3.3/GAssist
- Timestamp:
- 04/10/13 15:15:13 (12 years ago)
- Location:
- branches/LearningClassifierSystems/HeuristicLab.Optimization.Operators.LCS/3.3
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LearningClassifierSystems/HeuristicLab.Optimization.Operators.LCS/3.3
-
Property
svn:ignore
set to
obj
Plugin.cs
-
Property
svn:ignore
set to
-
branches/LearningClassifierSystems/HeuristicLab.Optimization.Operators.LCS/3.3/GAssist/Interfaces/IGAssistIndividual.cs
r9342 r9352 26 26 public interface IGAssistIndividual : IItem { 27 27 IGAssistNiche Niche { get; } 28 void SetNiche(IRandom random, IGAssistNiche niche); 28 29 void ApplySplit(IRandom random, double probability); 29 30 void ApplyMerge(IRandom random, double probability); -
branches/LearningClassifierSystems/HeuristicLab.Optimization.Operators.LCS/3.3/GAssist/Interfaces/IGAssistNiche.cs
r9342 r9352 20 20 #endregion 21 21 22 using System.Collections.Generic; 22 23 using HeuristicLab.Core; 23 24 … … 25 26 public interface IGAssistNiche : IItem { 26 27 bool SameNiche(IGAssistNiche niche); 28 int GetNicheHashCode(); 29 IEqualityComparer<IGAssistNiche> Comparer { get; } 27 30 } 28 31 }
Note: See TracChangeset
for help on using the changeset viewer.