TDLS 0.2.0
Tiny Device-callable Linear Solvers
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1#ifndef TDLS_CORE_VERSION_HPP
2#define TDLS_CORE_VERSION_HPP
3
4
5
13
16#define TDLS_VERSION_MAJOR 0
17
20#define TDLS_VERSION_MINOR 2
21
24#define TDLS_VERSION_PATCH 0
25
28#define TDLS_VERSION_STRING "0.2.0"
29
32#define TDLS_VERSION (TDLS_VERSION_MAJOR * 10000 + TDLS_VERSION_MINOR * 100 + TDLS_VERSION_PATCH)
33
34
35
36#endif // TDLS_CORE_VERSION_HPP