source: tspsg-svn/trunk/README.txt @ 112

Last change on this file since 112 was 110, checked in by laleppa, 14 years ago

+ Added ChangeLog?, Installation Guide and License pages to doxygen generated documentation.

  • Added city and separator parameters to CTSPSolver::getSortedPath() method to make path generation more flexible.
  • Fixed a bug when the solution graph wasn't drwan correctly in some situations.
File size: 1.7 KB
RevLine 
[104]1=================================
2 TSPSG: TSP Solver and Generator
3=================================
4
[87]5Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
[39]6
[47]7TSPSG is intended to generate and solve Travelling Salesman Problem
[110]8(TSP) tasks. It uses Branch and Bound method for solving. Its input is
9a number of cities and a matrix of city-to-city travel costs. The
10matrix can be populated with random values in a given range (which is
11useful for generating tasks). The result is an optimal route, its
12price, step-by-step matrices of solving and a solving graph. The task
13can be saved in an internal binary format and opened later. The result
14can be printed or saved as PDF, HTML, or ODF.
[39]15
[47]16TSPSG may be useful for teachers to generate test tasks or just for
17regular users to solve TSPs. Also, it may be used as an example of
[110]18using Branch and Bound method to solve a particular task.
[39]19
20TSPSG is free software: you can redistribute it and/or modify it
21under the terms of the GNU General Public License as published
22by the Free Software Foundation, either version 3 of the License,
23or (at your option) any later version.
24
25TSPSG is distributed in the hope that it will be useful, but
26WITHOUT ANY WARRANTY; without even the implied warranty of
27MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28GNU General Public License for more details.
29
30You should have received a copy of the GNU General Public License
31along with TSPSG.  If not, see <http://www.gnu.org/licenses/>.
32
33Third parties:
34
[104]35  * This software is created using opensource version of Qt toolkit,
36    see http://qt.nokia.com/
37
38  * The icons used in this software are part of Oxygen Icons project
39    licensed according to the GNU Lesser General Public License,
40    see http://www.oxygen-icons.org/
41
42
43$Id: README.txt 110 2010-04-27 23:38:10Z laleppa $
44$URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/README.txt $
Note: See TracBrowser for help on using the repository browser.