DOpE
versionscheck.h
Go to the documentation of this file.
1 
2 #ifndef _VERSIONSCHECK_H_
3 #define _VERSIONSCHECK_H_
4 
5 #define DEAL_II_VERSION_LT(major,minor) (DEAL_II_MAJOR_VERSION * 10000 + \
6  DEAL_II_MINOR_VERSION < (major)*10000 + (minor))
7 
8 #define DEAL_II_VERSION_GTE(major,minor) (DEAL_II_MAJOR_VERSION * 10000 + \
9  DEAL_II_MINOR_VERSION >= (major)*10000 + (minor))
10 
11 
12 #endif /* _VERSIONSCHECK_H_ */