Changeset 2aeaea9572 in tspsg for README.md
- Timestamp:
- Nov 2, 2013, 5:44:47 PM (11 years ago)
- Branches:
- appveyor, imgbot, master
- Children:
- 4b975848ad
- Parents:
- 50b202f04d
- git-author:
- Oleksii Serdiuk <contacts@…> (11/02/13 17:44:47)
- git-committer:
- Oleksii Serdiuk <contacts@…> (11/03/13 20:48:44)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
README.md
r50b202f04d r2aeaea9572 1 TSP SG: TSPSolver and Generator2 ======================== =======1 TSP Solver and Generator 2 ======================== 3 3 4 Copyright (C) 2007-2013 Oleksii Serdiuk <contacts[at]oleksii[dot]name>4 Copyright (C) 2007-2013 [Oleksii Serdiuk](mailto:[email protected]). 5 5 6 6 7 About 8 ----- 7 About TSPSG 8 ----------- 9 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. 10 **TSP Solver and Generator** is intended to generate and solve 11 **Travelling Salesman Problem** (TSP) tasks. It uses *Branch and Bound* 12 method for solving. Its input is a number of cities and a matrix of 13 city-to-city travel costs. The matrix can be populated with random 14 values in a given range (which is useful for generating tasks). The 15 result is an optimal route, its price, step-by-step matrices of solving 16 and a solving graph. The task can be saved in an internal binary format 17 and opened later. The result can be printed or saved as *PDF*, *HTML*, 18 or *ODF*. 18 19 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. 20 **TSPSG** may be useful for teachers to generate test tasks or just for 21 regular users to solve TSPs. Also, it may be used as an example of using 22 *Branch and Bound* method to solve a particular task. 23 24 You can check the [Installation Guide](INSTALL.md) or read the 25 [ChangeLog](ChangeLog.md) to see what's new (updated only on releases). 22 26 23 27 … … 43 47 44 48 I'd like to give credits to the following projects which were used in 45 the creation of TSP Solver and Generator:49 the creation of **TSP Solver and Generator**: 46 50 47 * TSPSG was created using Qt frameworklicensed under the terms of48 the GNU Lesser General Public License,49 see http://qt.nokia.com/.51 * TSPSG was created using **Qt framework** licensed under the terms of 52 the *GNU Lesser General Public License*, 53 see <http://qt.nokia.com/>. 50 54 51 * Most icons used in TSPSG are part of Oxygen Icons project licensed52 according to the GNU Lesser General Public License,53 see http://www.oxygen-icons.org/.55 * Most icons used in TSPSG are part of **Oxygen Icons** project 56 licensed according to the *GNU Lesser General Public License*, 57 see <http://www.oxygen-icons.org/>. 54 58 55 * Country flag icons used in TSPSG are part of the free Flag Icons56 collection created by IconDrawer,57 see http://www.icondrawer.com/.59 * Country flag icons used in TSPSG are part of the free **Flag Icons** 60 collection created by **IconDrawer**, 61 see <http://www.icondrawer.com/>. 58 62 59 * TSPSG comes with the default "embedded" font DejaVu LGC Sans Mono60 from the DejaVu fonts licensed under a Free license,61 see http://dejavu-fonts.org/.63 * TSPSG comes with the default "embedded" font **DejaVu LGC Sans 64 Mono** from the **DejaVu fonts** licensed under a *Free license*, 65 see <http://dejavu-fonts.org/>. 62 66 63 67 68 <!-- 64 69 $Id: $Format:%h %ai %an$ $ 65 70 $URL: http://tspsg.info/ $ 71 -->
Note: See TracChangeset
for help on using the changeset viewer.