Changeset 1044
- Timestamp:
- 01/24/13 18:22:08 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/DefaultIterationDetectionRule.java
r970 r1044 63 63 public class DefaultIterationDetectionRule implements TemporalRelationshipRule { 64 64 65 private static final int MAX_LENGTH_OF_ITERATED_SEQUENCE = 15; 66 65 67 /** 66 68 * <p> … … 265 267 266 268 int minChildCount = 1; 267 int maxChildCount = end - start;269 int maxChildCount = Math.min(MAX_LENGTH_OF_ITERATED_SEQUENCE, end - start); 268 270 269 271 if (useEqualSublistLengths && (subSequences.equalVariants.size() > 0)) {
Note: See TracChangeset
for help on using the changeset viewer.