You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
277 B
19 lines
277 B
6 years ago
|
#ifndef COMMON_H
|
||
|
#define COMMON_H
|
||
|
|
||
|
#include <cmath>
|
||
|
#include <algorithm>
|
||
|
|
||
|
#if defined(_OPENMP)
|
||
|
#include <omp.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#define DISABLE_COPY_AND_ASSIGN(classname) \
|
||
|
private:\
|
||
|
classname(const classname&) = delete;\
|
||
|
classname& operator=(const classname&) = delete;
|
||
|
|
||
|
|
||
|
#endif
|