[104] | 1 | ================================= |
---|
| 2 | TSPSG: TSP Solver and Generator |
---|
| 3 | ================================= |
---|
| 4 | |
---|
[87] | 5 | Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name> |
---|
[39] | 6 | |
---|
[47] | 7 | TSPSG is intended to generate and solve Travelling Salesman Problem |
---|
[110] | 8 | (TSP) tasks. It uses Branch and Bound method for solving. Its input is |
---|
| 9 | a number of cities and a matrix of city-to-city travel costs. The |
---|
| 10 | matrix can be populated with random values in a given range (which is |
---|
| 11 | useful for generating tasks). The result is an optimal route, its |
---|
| 12 | price, step-by-step matrices of solving and a solving graph. The task |
---|
| 13 | can be saved in an internal binary format and opened later. The result |
---|
| 14 | can be printed or saved as PDF, HTML, or ODF. |
---|
[39] | 15 | |
---|
[47] | 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 |
---|
[110] | 18 | using Branch and Bound method to solve a particular task. |
---|
[39] | 19 | |
---|
| 20 | |
---|
[124] | 21 | This program is free software: you can redistribute it and/or modify |
---|
| 22 | it under the terms of the GNU General Public License as published by |
---|
| 23 | the Free Software Foundation, either version 3 of the License, or |
---|
| 24 | (at your option) any later version. |
---|
| 25 | |
---|
| 26 | This program is distributed in the hope that it will be useful, |
---|
| 27 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 28 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
[39] | 29 | GNU General Public License for more details. |
---|
| 30 | |
---|
| 31 | You should have received a copy of the GNU General Public License |
---|
[124] | 32 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
[39] | 33 | |
---|
[124] | 34 | |
---|
[39] | 35 | Third parties: |
---|
| 36 | |
---|
[124] | 37 | * This software is created using opensource version of Qt framework, |
---|
[104] | 38 | see http://qt.nokia.com/ |
---|
| 39 | |
---|
[121] | 40 | * Most icons used in this software are part of Oxygen Icons project |
---|
[104] | 41 | licensed according to the GNU Lesser General Public License, |
---|
| 42 | see http://www.oxygen-icons.org/ |
---|
| 43 | |
---|
[121] | 44 | * Country flag icons used in this software are part of the free Flag |
---|
| 45 | Icons collection created by IconDrawer, |
---|
| 46 | see http://www.icondrawer.com/ |
---|
[104] | 47 | |
---|
[121] | 48 | |
---|
[104] | 49 | $Id: README.txt 124 2010-07-04 01:03:13Z laleppa $ |
---|
| 50 | $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/README.txt $ |
---|