-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathScoutBee.py
35 lines (29 loc) · 1.06 KB
/
ScoutBee.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from EliteBee import *
import threading
import Queue
from collections import deque
import time
import random
scout_schedules = Queue.PriorityQueue()
MAX_SCOUT_ATTEMPTS = 3000
class ScoutBee(threading.Thread):
def __init__(self, iterations):
threading.Thread.__init__(self)
self.iterations = iterations
def run(self):
time.sleep(0.5)
while True:
if elite_schedules.empty():
break
designated_schedule = deque(elite_schedules.get())
new_schedule = Schedule(2016, 1)
attempts = 0
while (attempts < MAX_SCOUT_ATTEMPTS) & (len(designated_schedule) > 0):
course_to_evaluate = designated_schedule.pop()
if new_schedule.check_prereqs(course_to_evaluate) == 0:
new_schedule.add_session(course_to_evaluate.get_sessions()[0])
else:
designated_schedule.appendleft(course_to_evaluate)
attempts += 1
new_schedule.sort()
scout_schedules.put(new_schedule)