Created
August 25, 2014 15:43
-
-
Save DanielWJudge/06d4a78b280587add2b6 to your computer and use it in GitHub Desktop.
Time Period Overlap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//final overlapping periods | |
ITimePeriodCollection overlapPeriods = new TimePeriodCollection(); | |
//used to help find overlaps | |
TimePeriodIntersector<TimeRange> periodCombiner = new TimePeriodIntersector<TimeRange>(); | |
//periods to check to see if they overlap | |
TimePeriodCollection periodsToCheck = new TimePeriodCollection(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment