aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_timer.h
blob: 11e61e547adb9cbb7ba0b1dc08b11fe1d072ff33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * @file timer.h
 * @author Gertjan van den Burg
 * @date August, 2013
 * @brief Header file for timer.c
 *
 * @details
 * Function declaration for timer function used to measure computation time.
 *
 */

#ifndef GENSVM_TIMER_H
#define GENSVM_TIMER_H

// includes
#include "globals.h"

// function declarations
double gensvm_elapsed_time(clock_t s_time, clock_t e_time);

#endif