Taskflow  2.7.0
taskflow.hpp
1 #pragma once
2 
3 #include "core/executor.hpp"
4 #include "algorithm/for_each.hpp"
5 #include "algorithm/reduce.hpp"
6 
7 // TF_VERSION % 100 is the patch level
8 // TF_VERSION / 100 % 1000 is the minor version
9 // TF_VERSION / 100000 is the major version
10 
11 // current version: 2.7.0
12 #define TF_VERSION 200700
13 
14 #define TF_MAJOR_VERSION TF_VERSION/100000
15 #define TF_MINOR_VERSION TF_VERSION/100%1000
16 #define TF_PATCH_VERSION TF_VERSION%100
17 
18 namespace tf {
19 
23 constexpr const char* version() {
24  return "2.7.0";
25 }
26 
27 
28 } // end of namespace tf -----------------------------------------------------
29 
30 
31 
32 
33 
Definition: error.hpp:9