Changeset 9194 for branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3/Subsumption
- Timestamp:
- 01/28/13 17:54:46 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3/Subsumption/CheckGASubsumptionOperator.cs
r9110 r9194 105 105 for (int i = 0; i < parents.Length; i++) { 106 106 IClassifier curParent = parents[i]; 107 if (curParent.MatchAction(child )) {107 if (curParent.MatchAction(child.Action)) { 108 108 if (CouldSubsume(experiences[i], errors[i])) { 109 109 if (curParent.IsMoreGeneral(child)) {
Note: See TracChangeset
for help on using the changeset viewer.