In the curriculum course example, I want the lecture to start within a time window and according to its duration the constraints between two consecutive lectures are set. Defining the constraints in the DRL file is not the problem, I've already tried it with a fixed lecture start time but I want to make the lectures start time to be chosen from a period (time window) and satisfying the constraints. I want to make the inputs earliestStartTime and latestStartTime as inputs and the used start time for each lecture to be chosen between these two boundaries.
i.e Lecture Time x belongs to [earliestStartTime, latestStartTime], and x should be chosen by the program within this range and ofcourse satisfying the defined constraints. what I have successed in is that I made x to be the input and I obtained the output as a schedule determining the order of the lectures according to the defined constraints. Now I want to make x as a variable determined by the program and the inputs will be the earliestStartTime and the latestStartTime.