Scheduling problem with Resource consumption dependent on other task modes - #520
Open
g-poveda wants to merge 7 commits into
Open
Scheduling problem with Resource consumption dependent on other task modes#520g-poveda wants to merge 7 commits into
g-poveda wants to merge 7 commits into
Conversation
…y depend on the mode of the task but also to previously chosen modes for task
improve function naming and use of the variables in the cpsat/auto.
…is_present variable and was giving the solver an escape to some constraint.
… implementation of the generic scheduling problem. update auto transformation
g-poveda
marked this pull request as ready for review
September 3, 2026 14:51
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
we introduce a new feature to the problem, the possibility that the resource consumption of task in a given mode, might depend not only on the task mode, but also to the mode values of other task. This can model problem where decision done in early stage has an impact on future task.
For example,
-if we choose to accomplish task0 in a given location, it might impact the consumption of further task1 if it is implicitely done in the same place.
-Or if we use some mode of task0, then the "cost" to accomplish a further task can be increased/decreased.
We add new checker, cpsat model and a problem implementing this feature.