GitHub Viewer
// A simple example to capture the following task dependencies.
//
// TaskA---->TaskB---->TaskD
// TaskA---->TaskC---->TaskD
#include // the only include you need
int main(){
tf::Taskflow tf;
auto [A, B, C, D] = tf.silent_emplace( // the taskflow graph
[] () { std::cout