readme

来自「Algorithm based on the outline of (Lin, 」· 代码 · 共 54 行

TXT
54
字号
    Traveling Salesman Problem Solver for unix    Copyright (C) 1997  K. L. Dunn    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    Author: K. L. Dunn    email: k.l.dunn@ieee.orgTraveling Salesman Problem SolverBuilding:You will need the GNU C compiler system, v2.6.x or later, to compiletsp.c.  There is no makefile.  On most platforms, this should work:   gcc -O2 -o tsp tsp.cInstalling:Put the executable (output of the compiler) in a directory in your path.Running:tsp expects an even number of integer arguments.  Each pair of numbersrepresents the planar coordinates of one of the nodes to be "visited".For example, if you issue:   tsp 1 1 2 2 1 2 2 1which are the orners of a square, the tsp will output something like:   4 2 3 1which are the indeces of the coordinate pairs in optimal path order.Author:  K. L. Dunn   k.l.dunn@ieee.org

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?