Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/monicadsong/cs182-final-project

CS182: Artificial Intelligence Final Project, CSP Rehearsal Scheduler
https://github.com/monicadsong/cs182-final-project

ai ballet csp scheduler

Last synced: 6 days ago
JSON representation

CS182: Artificial Intelligence Final Project, CSP Rehearsal Scheduler

Awesome Lists containing this project

README

        

# CS182-Final-Project

## A CSP-Based Rehearsal Scheduler
### Monica Song, [email protected]

**Note: code is written in Python3**

To run the scheduler, type:
`python solver.py `
where `` can be `InPassage`, `Oz`, or `CityScapes` and `` can be `DFS`, `heuristic`, or `random`.

An example command:
`python solver.py Oz heuristic`

To evaluate an existing tech week, type:
`python eval_solution.py `

#### Description of the files:
* *solver.py*: runs the scheduler
* *scheduler.py*: contains the code for the scheduler class and the three algorithms
* *eval_solution.py*: evaluates a pre-existing actual tech week
* *classes.py*: contains the Dancer and Rehearsal classes
* *helper.py*: contains helper functions referenced by the Scheduler class
* *timeslot_vars.py*: contains the variable values for the time slots
* *Tree.py*: contains helper code for building the search tree
* *InPassage.py, CityScapes.py, Oz.py*: contain the dancer and piece objects for each performance