ProcessScheduler
ProcessScheduler copied to clipboard
A Python package for automatic and optimized resource scheduling
Is it possible to set a priority for resource allocation? For example: for task 1 first assign resource R1; if R1 is not available then assign R2; if not even...
Hi @tpaviot, in #142 the `ResourceInterruptible` and `ResourcePeriodicallyInterruptible` resource constraints have been added and they work well with the existing Task variations: `VariableDurationTask` spans over the interruption intervals whereas for...
Hi @tpaviot, in #141 and #143 I did stuff with interruptible tasks. Now I try to make use of the `work_amount` attribute of `Task` classes, as this would allow me...
Hi, I am trying to save the gantt diagram generated by the function render_gantt_plotly in a folder of the project. The problem I am encountering is that if i specify...
I am so grateful for this library. How can I buy you a beer and do you accept contributions?
Dear all, thanks a lot for the work you have done! amazing! Quick question, I am trying the [Resource constrained project scheduling](https://github.com/tpaviot/ProcessScheduler/blob/master/examples-notebooks/resource_constrained_project_scheduling.ipynb) example, and I would like to know whether...
I am thankful for all your efforts on processscheduler github repo. I have used in my project but I am stuck at a point and can't seem to move past...
First of all, thank you for such a good library. I'm trying to create a schedule where resources have shift breaks. I tried both `ResourceUnavailable` and also `Productivity` but no...
Hi, could you provide more information on how both algorithms work or a link to papers/web pages with the explanation of both along with the mathematical formulas they are using....