An open API service indexing awesome lists of open source software.

https://github.com/mahdavipanah/constrainedscheduling

A solution for a constrained scheduling problem
https://github.com/mahdavipanah/constrainedscheduling

algorithm dynamic-programming python scheduling

Last synced: 6 months ago
JSON representation

A solution for a constrained scheduling problem

Awesome Lists containing this project

README

          

# Problem's description
![Problem's description](./description.jpg)

# Input rules
Every line of input.txt contains a task with this format:

TaskName TaskPrerequisite TaskTime TaskCost

The program will read input.txt until reaching to an empty line or EOF.

There is an example test case in input.txt. You can read it to see how input.txt should be filled.

# Prerequisites
* Python2 *(python 2.7 is tested)*
* [asciitree python package](https://github.com/mbr/asciitree):
```
pip2 install asciitree
```