-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdos_timer.c
94 lines (67 loc) · 2.7 KB
/
dos_timer.c
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
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: dos_timer.c
Author: Thomas Stuetzle
Purpose: routines for measuring elapsed time (CPU or real)
Check: README.txt and legal.txt
Copyright (C) 2004 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
***************************************************************************/
#include <stdio.h>
#include <time.h>
#include "timer.h"
static clock_t start_time;
static double elapsed;
void start_timers(void)
/*
FUNCTION: virtual and real time of day are computed and stored to
allow at later time the computation of the elapsed time
(virtual or real)
INPUT: none
OUTPUT: none
(SIDE)EFFECTS: virtual and real time are computed
*/
{
start_time = clock();
}
double elapsed_time(TIMER_TYPE type)
/*
FUNCTION: return the time used in seconds (virtual or real, depending on type)
INPUT: TIMER_TYPE (virtual or real time)
OUTPUT: seconds since last call to start_timers (virtual or real)
(SIDE)EFFECTS: none
*/
{
elapsed = clock()- start_time;
return elapsed / CLOCKS_PER_SEC;
}