rosshamish / classtime

university schedule generation and course data API
MIT License
16 stars 2 forks source link

Busy times at the same time will break the timetable_bitmap #96

Closed rosshamish closed 9 years ago

rosshamish commented 9 years ago

Since they're added to the bitmap with +=, the 1's will add together, carry to the next decimal/binary place/point, and the timetable_bitmap will now be very incorrect. Busy times aren't necessarily expected to be given which overlap, but we should handle this.

rosshamish commented 9 years ago

Whoops, that division by zero fix is actually for issue #97