Skip to content

ingambe/Aircraft_Scheduling

Repository files navigation

Aircraft Scheduling Build Status

This is a Proof of Concept for an ASP formulation of the Aircraft Scheduling problem.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Which things you need to install the software and how to install them

Installing

First, you need to clone this repository

git clone https://github.com/ingambe/Aircraft_Scheduling.git
cd Aircraft_Scheduling

Optional (but recommended): You can create a virtual environment in order to keep the dependencies separated from your own python environment. You can use either Conda or Pip, but it is easier to use Conda in order to install Clingo with Python include.

For Conda users (Recommended):

conda create --name aircraft_schedule --file environment.yml
conda activate aircraft_schedule

For Pip users: After having installer Clingo with Python included.

pip install virtualenv
virtualenv aircraft_schedule
source aircraft_schedule/Scripts/activate

And finally install all the dependencies:

pip install -r requirements.txt

Generate instances

The script file route_gen.py allows you to generate instances. If you run it using --default, it will use the defaults one. The --gantt argument generate and display a gannt of the instances:

example of generated gannt

Solve an instance

The main script file at the root of the project allows to solve an instance and test that the outputted solution is legal. You can also see the gantt of your solution if you want it.

usage: main.py [-h] [--input INPUT] [--instance INSTANCE]
               [--output_file OUTPUT_FILE] [--gantt]

Generate the solution and test it to ensure it is correct

optional arguments:
  -h, --help            show this help message and exit
  --encoding INPUT      the path to the encoding you want to use to solve the instance
  --instance INSTANCE   the path to the instance to solve 
  --output_file OUTPUT_FILE
                        the path to the ouput solution file
  --gantt               output the gannt of the solution
  --parallel            run the search in parallel on a given number of cores

The folder encoding folder contains every encoding you can use and test. The folder instances folder contains every instances to solve.

Here is an example of the gannt of a solved instance:

example of generated gannt of a big instance

Available encoding

There is two main type of available encoding:

  • One shot: the "classical" approach which consist of ground + solve the instance.
  • Multi Shot One Hour: where we incrementally add new predicate to the solver, we run it for one hour.
  • Multi Shot: the multi-shot wich stops if he don't improve is founded solution after 3 iterations.
  • Parallel: the exact same encoding as Multi Shot except that the benchmark script recognize him as something to launch in parallel mode.

If you plain to use the multi shot formulation in your project, you may need to fine tune the hyper-parameters of the solver such as the incremental step (which represent the added extra on-ground time in second at each iteration), the number of iteration without improvement before to stop and maximum allowed time to the solver in order to find a solution.

Running the tests

The instance generator is tested here: unit_test.py. You can run the unit test using pytest. The test coverage his far from optimal unfortunately, a contribution to this aspect is welcomed.

Authors

  • Pierre Tassel
  • Martin Gebser
  • Mohamed Rbaia

License

MIT License

About

PoC aircraft scheduling in ASP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published