I’d like to implement the recommended fit api into my workflow.
My domain is currently a single planning entity Task
with a single planning variable timeslot
.
The Task
model contains an UUID property named coordination
. When we solve, we require that Task
‘s are coordinated. They must use timeslots that share a coordination
ID as well.
Is there a way for me to submit multiple Tasks (entities) at the same time and get the aggregate recommended fits?
The examples show a single planning entity at a time, and mention planning list. I was hoping to do something similar to:
var result = solutionManager.recommendFit(solution, tasks, (tasksProp) -> tasksProp.stream().map(Task::getTimeslot).toList());