1 | TSPSG: TSP Solver and Generator |
---|
2 | =============================== |
---|
3 | |
---|
4 | Copyright (C) 2007-2013 Oleksii Serdiuk <contacts[at]oleksii[dot]name> |
---|
5 | |
---|
6 | |
---|
7 | About |
---|
8 | ----- |
---|
9 | |
---|
10 | TSPSG is intended to generate and solve Travelling Salesman Problem |
---|
11 | (TSP) tasks. It uses Branch and Bound method for solving. Its input is |
---|
12 | a number of cities and a matrix of city-to-city travel costs. The |
---|
13 | matrix can be populated with random values in a given range (which is |
---|
14 | useful for generating tasks). The result is an optimal route, its |
---|
15 | price, step-by-step matrices of solving and a solving graph. The task |
---|
16 | can be saved in an internal binary format and opened later. The result |
---|
17 | can be printed or saved as PDF, HTML, or ODF. |
---|
18 | |
---|
19 | TSPSG may be useful for teachers to generate test tasks or just for |
---|
20 | regular users to solve TSPs. Also, it may be used as an example of |
---|
21 | using Branch and Bound method to solve a particular task. |
---|
22 | |
---|
23 | |
---|
24 | License |
---|
25 | ------- |
---|
26 | |
---|
27 | This program is free software: you can redistribute it and/or modify |
---|
28 | it under the terms of the GNU General Public License as published by |
---|
29 | the Free Software Foundation, either version 2 of the License, or |
---|
30 | (at your option) any later version. |
---|
31 | |
---|
32 | This program is distributed in the hope that it will be useful, |
---|
33 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
34 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
35 | GNU General Public License for more details. |
---|
36 | |
---|
37 | You should have received a copy of the GNU General Public License |
---|
38 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
39 | |
---|
40 | |
---|
41 | Credits |
---|
42 | ------- |
---|
43 | |
---|
44 | I'd like to give credits to the following projects which were used in |
---|
45 | the creation of TSP Solver and Generator: |
---|
46 | |
---|
47 | * TSPSG was created using Qt framework licensed under the terms of |
---|
48 | the GNU Lesser General Public License, |
---|
49 | see http://qt.nokia.com/. |
---|
50 | |
---|
51 | * Most icons used in TSPSG are part of Oxygen Icons project licensed |
---|
52 | according to the GNU Lesser General Public License, |
---|
53 | see http://www.oxygen-icons.org/. |
---|
54 | |
---|
55 | * Country flag icons used in TSPSG are part of the free Flag Icons |
---|
56 | collection created by IconDrawer, |
---|
57 | see http://www.icondrawer.com/. |
---|
58 | |
---|
59 | * TSPSG comes with the default "embedded" font DejaVu LGC Sans Mono |
---|
60 | from the DejaVu fonts licensed under a Free license, |
---|
61 | see http://dejavu-fonts.org/. |
---|
62 | |
---|
63 | |
---|
64 | $Id: $Format:%h %ai %an$ $ |
---|
65 | $URL: http://tspsg.info/ $ |
---|