1 | TSPSG: TSP Solver and Generator |
---|
2 | Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name> |
---|
3 | |
---|
4 | $Id$ |
---|
5 | $URL$ |
---|
6 | |
---|
7 | TSPSG is intended to generate and solve Travelling Salesman Problem |
---|
8 | (TSP) tasks. It uses Branch and Bound method for solving. An input |
---|
9 | is number of cities and matrix of city-to-city travel prices. |
---|
10 | The matrix can be populated with random values in a given range |
---|
11 | (useful for generating tasks). The result is an optimal route, its |
---|
12 | price, step-by-step matrices of solving and solving graph. The task |
---|
13 | can be saved in internal binary format and opened later. The result |
---|
14 | can be printed without the answer (only input matrix) or with it. |
---|
15 | |
---|
16 | TSPSG may be useful for teachers to generate test tasks or just for |
---|
17 | regular users to solve TSPs. Also, it may be used as an example of |
---|
18 | using Branch and bound method to solve particular task. |
---|
19 | |
---|
20 | TSPSG is free software: you can redistribute it and/or modify it |
---|
21 | under the terms of the GNU General Public License as published |
---|
22 | by the Free Software Foundation, either version 3 of the License, |
---|
23 | or (at your option) any later version. |
---|
24 | |
---|
25 | TSPSG is distributed in the hope that it will be useful, but |
---|
26 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
27 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
28 | GNU General Public License for more details. |
---|
29 | |
---|
30 | You should have received a copy of the GNU General Public License |
---|
31 | along with TSPSG. If not, see <http://www.gnu.org/licenses/>. |
---|
32 | |
---|
33 | Third parties: |
---|
34 | * This software is created using opensource version of Qt toolkit, |
---|
35 | see http://www.qtsoftware.com/ |
---|
36 | * The icons used in this software are part of Oxygen Icons project |
---|
37 | licensed according to the GNU Lesser General Public License, |
---|
38 | see http://www.oxygen-icons.org/ |
---|
39 | |
---|