From 38a41169ad9ab08ad3087b9ae519c1161922f2cf Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Tue, 26 Apr 2022 13:52:20 -0700 Subject: [PATCH] update todo, add step 5/6 --- test/scheduleGenerator/v3.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/scheduleGenerator/v3.py b/test/scheduleGenerator/v3.py index 7862e30..ead2f68 100644 --- a/test/scheduleGenerator/v3.py +++ b/test/scheduleGenerator/v3.py @@ -313,10 +313,9 @@ def generateScheduleV3(students: list, courses: dict) -> dict[str, dict]: allClassRunCounts.remove(allClassRunCounts[index]) courseRunInfo.pop(list(courseRunInfo)[index]) - for block in running: - print(f"{block}: {len(running[block])}") + # Step 5 - Fill student schedule - # Step 5 - Evaluate, move classes or students to fix + # Step 6 - Evaluate, move classes or students to fix return running if __name__ == '__main__':