Replies: 1 comment 3 replies
-
Yes it is possible to use multiple In your timefold.solver.teacherSolver.solver-config-xml=teachersConfig.xml
timefold.solver.roomSolver.solver-config-xml=roomsConfig.xml In your Java code: @Autowired
@Qualifier("teacherSolver")
SolverManager<TeacherToLessonSchedule, String> teacherToLessonScheduleSolverManager;
@Autowired
@Qualifier("roomSolver")
SolverManager<Timetable, String> lessonToRoomTimeslotSolverManager; |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am currently working on a project very much like meeting scheduling and I have to run the solver twice. The planning entity changes for the 2 solver, so I changed the planning solutions too and made the config.xml separate. I followed this blog to add multiple solver https://timefold.ai/blog/multiple-solver-managers but the spring boot application shows this error when I try to run it.
Beta Was this translation helpful? Give feedback.
All reactions