CodingTrain / Suggestion-Box

A repo to track ideas for topics
568 stars 86 forks source link

Generating a optimized timetable solution for universities using genetic algo in JavaScript #1816

Open umee007 opened 5 months ago

umee007 commented 5 months ago

we will have faculty load (i.e. teachers load), classrooms, class data (to whom the subjects are assigned e.g. BSCS 5A), and course data. Teachers will be assigned to courses. Now, the genetic algorithm will give us a solution that removes teachers and classroom clashes. The generated timetable will also have a feature that will minimize the gap hours (break periods) of classes.

Could you guide me on how to implement the algorithm while keeping all the above constraints in mind?

My Gratitudes