-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQAP.h
73 lines (57 loc) · 2.75 KB
/
QAP.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
AAAA CCCC OOOO TTTTTT SSSSS PPPPP
AA AA CC OO OO TT SS PP PP
AAAAAA CC OO OO TT SSSS PPPPP
AA AA CC OO OO TT SS PP
AA AA CCCC OOOO TT SSSSS PP
######################################################
########## ACO algorithms for the TSP ##########
######################################################
Version: 1.0
File: TSP.h
Author: Thomas Stuetzle
Purpose: TSP related procedures, distance computation, neighbour lists
Check: README and gpl.txt
Copyright (C) 2002 Thomas Stuetzle
*/
/***************************************************************************
Program's name: acotsp
Ant Colony Optimization algorithms (AS, ACS, EAS, RAS, MMAS, BWAS) for the
symmetric TSP
Copyright (C) 2004 Thomas Stuetzle
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
email: stuetzle no@spam ulb.ac.be
mail address: Universite libre de Bruxelles
IRIDIA, CP 194/6
Av. F. Roosevelt 50
B-1050 Brussels
Belgium
***************************************************************************/
#define HEURISTIC(m,n) (1.0)
/* add a small constant to avoid division by zero if a distance is zero */
#define RRR 6378.388
#ifndef PI /* as in stroustrup */
#define PI 3.14159265358979323846
#endif
struct problem {
char name[LINE_BUF_LEN]; /* instance name */
long int n; /* number of cities */
long int **distance; /* distance matrix: distance[i][j] gives distance
between location i und j */
long int **flow; /* flow matrix: flow[i][j] gives flow
between item i und j */
long int **nn_list; /* nearest neighbor list; contains for each node i a
sorted list of n_near nearest neighbors */
};
#include "problem.h" /* Problem-independent interface */
long int ** read_matrix( FILE *input, long int size );