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