Loading...
Searching...
No Matches
taskflow.hpp
1#pragma once
2
3#include "core/executor.hpp"
4#include "core/runtime.hpp"
5#include "core/async.hpp"
6#include "core/task_group.hpp"
7#include "algorithm/algorithm.hpp"
8
13
18
23
28
33
34
35
47#define TF_VERSION 400100
48
54#define TF_MAJOR_VERSION TF_VERSION/100000
55
61#define TF_MINOR_VERSION TF_VERSION/100%1000
62
68#define TF_PATCH_VERSION TF_VERSION%100
69
70
71
75namespace tf {
76
80namespace detail { }
81
82
88constexpr const char* version() {
89 return "4.1.0";
90}
91
92
93} // end of namespace tf -----------------------------------------------------
94
95
taskflow namespace
Definition small_vector.hpp:20
constexpr const char * version()
queries the version information in a string format major.minor.patch
Definition taskflow.hpp:88