SEP Solver Library  1.0
 All Classes Namespaces Files Functions Variables Typedefs Macros
myomp.h
Go to the documentation of this file.
1 //
2 // myomp.h
3 // test
4 //
5 // Created by Robert Clapp on 8/22/13.
6 // Copyright (c) 2013 __MyCompanyName__. All rights reserved.
7 //
8 
9 #ifndef test_myomp_h
10 #define test_myomp_h
11 
12 #ifdef OMP
13 #include <omp.h>
14 #else
15 #define omp_get_num_threads() 1
16 #define omp_get_thread_num() 0
17 #endif
18 
19 #endif