MaMiCo 1.2
Loading...
Searching...
No Matches
TarchDefinitions.h
1// Copyright (C) 2015 Technische Universitaet Muenchen
2// This file is part of the Mamico project. For conditions of distribution
3// and use, please see the copyright notice in Mamico's main folder, or at
4// www5.in.tum.de/mamico
5#ifndef _TARCH_TARCHDEFINITIONS_H_
6#define _TARCH_TARCHDEFINITIONS_H_
7
8#define TARCH_YES 1
9#define TARCH_NO 0
10
11#ifdef TarchParallel
12#define TARCH_PARALLEL TARCH_YES
13#else
14#define TARCH_PARALLEL TARCH_NO
15#endif
16
17#ifdef TarchDebug
18#define TARCH_DEBUG TARCH_YES
19#else
20#define TARCH_DEBUG TARCH_NO
21#endif
22
23#endif // _TARCH_TARCHDEFINITIONS_H_