Skip to content
Snippets Groups Projects
Commit d7ef7a63cd55 authored by Patrice Journoud's avatar Patrice Journoud
Browse files

ok

No related branches found
No related tags found
No related merge requests found
README
Optimization of the Traveling-Salesman Problem based on a API RESTlike
======================================================================
Optimization of the Traveling-Salesman Problem based on a RESTlike API
======================================================================
This module allows you to find the best route given a set of points defined by their longitude & latitude.
The cost criteria
......@@ -4,7 +4,8 @@
This module allows you to find the best route given a set of points defined by their longitude & latitude.
The cost criteria
Only one criterion at the moment: the distance between the requested points
Other cost criteria could be considered in future version
......@@ -8,5 +9,5 @@
Only one criterion at the moment: the distance between the requested points
Other cost criteria could be considered in future version
Requirements
Requirements:
......@@ -12,7 +13,7 @@
- cornice (1.0.0)
- waitress (0.8.9)
- python-gflags
- ortools
- gpsdistance (for testings only)
* cornice (1.0.0)
* waitress (0.8.9)
* python-gflags
* ortools
* gpsdistance (for testings only)
......@@ -18,3 +19,3 @@
Launch with:
Launch with::
......@@ -20,5 +21,5 @@
$ python pserve.py development.ini --reload
$ python pserve.py development.ini --reload
Components
==========
......@@ -27,6 +28,6 @@
Clients contact the tsp via REST/Json requests, on the three main views:
- / (POST for obtaining the route given a set of pairs of (latitude, longitude) coordinates)
- /credentials (POST for creating a new user - token -)
- /credentials (DELETE for removing a user)
* / (POST for obtaining the route given a set of pairs of (latitude, longitude) coordinates)
* /credentials (POST for creating a new user - token -)
* /credentials (DELETE for removing a user)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment