COSC_4P82_Assignment_1/lib/beagle-3.0.3/examples/GA/tsp
Brett 4d4e8018fd ignore 2024-02-14 16:22:25 -05:00
..
MSVCPP init 2024-02-13 21:21:51 -05:00
config ignore 2024-02-14 16:22:25 -05:00
templates init 2024-02-13 21:21:51 -05:00
tsp init 2024-02-13 21:21:51 -05:00
AUTHORS init 2024-02-13 21:21:51 -05:00
COPYING init 2024-02-13 21:21:51 -05:00
INSTALL init 2024-02-13 21:21:51 -05:00
Makefile.am init 2024-02-13 21:21:51 -05:00
Makefile.cvs init 2024-02-13 21:21:51 -05:00
Makefile.in init 2024-02-13 21:21:51 -05:00
README init 2024-02-13 21:21:51 -05:00
acinclude.m4 init 2024-02-13 21:21:51 -05:00
aclocal.m4 init 2024-02-13 21:21:51 -05:00
bootstrap ignore 2024-02-14 16:22:25 -05:00
configure ignore 2024-02-14 16:22:25 -05:00
configure.ac init 2024-02-13 21:21:51 -05:00
tsp.kdevelop init 2024-02-13 21:21:51 -05:00

README

+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+

Traveling Salesman Problem (tsp): Indices integer vector GA example

Copyright (C) 2005
by  Christian Gagne <cgagne@gmail.com>
and Marc Parizeau <parizeau@gel.ulaval.ca>

+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+


Getting started
===============

  Example is compiled in binary 'tsp'. Usage options is described by
  executing it with command-line argument '-OBusage'. The detailed help can
  also be obtained with argument '-OBhelp'.

Objective
=========

  Find a the shortest path to visit all the nodes of a randomly generated
  graph.

Representation
==============

  Order in which the nodes of the graph are visited. The integers in the
  vector represent the indices of the nodes to visit.

Fitness
=======

  Sum of the inter-node distance given the path represented by an integer
  vector.