2022-09-05 10:39:42 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
|
|
|
|
* All rights reserved. This file is part of MD-Bench.
|
|
|
|
* Use of this source code is governed by a LGPL-3.0
|
|
|
|
* license that can be found in the LICENSE file.
|
|
|
|
*/
|
2021-10-12 22:39:54 +02:00
|
|
|
#ifndef __TIMERS_H_
|
|
|
|
#define __TIMERS_H_
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
TOTAL = 0,
|
|
|
|
NEIGH,
|
|
|
|
FORCE,
|
|
|
|
NUMTIMER
|
|
|
|
} timertype;
|
|
|
|
|
|
|
|
#endif
|