[50b202f04d] | 1 | TSPSG: TSP Solver and Generator |
---|
| 2 | =============================== |
---|
[b24a5a054a] | 3 | |
---|
[21c03af787] | 4 | Copyright (C) 2007-2013 Oleksii Serdiuk <contacts[at]oleksii[dot]name> |
---|
[b24a5a054a] | 5 | |
---|
[50b202f04d] | 6 | |
---|
| 7 | About |
---|
| 8 | ----- |
---|
| 9 | |
---|
[b424a7e320] | 10 | TSPSG is intended to generate and solve Travelling Salesman Problem |
---|
[5d401f2c50] | 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. |
---|
[b424a7e320] | 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 |
---|
[5d401f2c50] | 21 | using Branch and Bound method to solve a particular task. |
---|
[b24a5a054a] | 22 | |
---|
[43c29c04ba] | 23 | |
---|
[50b202f04d] | 24 | License |
---|
| 25 | ------- |
---|
| 26 | |
---|
[43c29c04ba] | 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 |
---|
[2940c14782] | 29 | the Free Software Foundation, either version 2 of the License, or |
---|
[43c29c04ba] | 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 |
---|
[b24a5a054a] | 35 | GNU General Public License for more details. |
---|
| 36 | |
---|
| 37 | You should have received a copy of the GNU General Public License |
---|
[43c29c04ba] | 38 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
| 39 | |
---|
[b24a5a054a] | 40 | |
---|
[50b202f04d] | 41 | Credits |
---|
| 42 | ------- |
---|
| 43 | |
---|
[b2e8e7ec71] | 44 | I'd like to give credits to the following projects which were used in |
---|
| 45 | the creation of TSP Solver and Generator: |
---|
[b24a5a054a] | 46 | |
---|
[b2e8e7ec71] | 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/. |
---|
[317ba0432e] | 50 | |
---|
[b2e8e7ec71] | 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/. |
---|
[317ba0432e] | 54 | |
---|
[b2e8e7ec71] | 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/. |
---|
[3cadf24d00] | 62 | |
---|
[317ba0432e] | 63 | |
---|
[7ba743d983] | 64 | $Id: $Format:%h %ai %an$ $ |
---|
| 65 | $URL: http://tspsg.info/ $ |
---|