• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..16-Dec-2007-

MSVCPP/H03-May-2022-175173

config/H16-Dec-2007-11,2048,980

templates/H16-Dec-2007-7064

tsp/H16-Dec-2007-925637

AUTHORSH A D02-May-200774 32

COPYINGH A D17-Sep-200517.6 KiB341281

INSTALLH A D16-Oct-2007896 3017

Makefile.amH A D04-Oct-200540 32

Makefile.cvsH A D17-Sep-200544 53

Makefile.inH A D16-Oct-200717.9 KiB585513

READMEH A D02-May-2007923 3723

acinclude.m4H A D16-Oct-200719.3 KiB604559

aclocal.m4H A D16-Oct-2007258.6 KiB7,3036,513

bootstrapH A D02-May-2007137 86

configureH A D16-Oct-2007707.7 KiB22,31417,698

configure.acH A D02-May-20071.5 KiB5142

tsp.kdevelopH A D02-May-20075.4 KiB188187

README

1+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
2
3Traveling Salesman Problem (tsp): Indices integer vector GA example
4
5Copyright (C) 2005
6by  Christian Gagne <cgagne@gmail.com>
7and Marc Parizeau <parizeau@gel.ulaval.ca>
8
9+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
10
11
12Getting started
13===============
14
15  Example is compiled in binary 'tsp'. Usage options is described by
16  executing it with command-line argument '-OBusage'. The detailed help can
17  also be obtained with argument '-OBhelp'.
18
19Objective
20=========
21
22  Find a the shortest path to visit all the nodes of a randomly generated
23  graph.
24
25Representation
26==============
27
28  Order in which the nodes of the graph are visited. The integers in the
29  vector represent the indices of the nodes to visit.
30
31Fitness
32=======
33
34  Sum of the inter-node distance given the path represented by an integer
35  vector.
36
37