FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpp-taskflow/examples/do_while_loop.cpp at master · neinnil/cpp-taskflow · GitHub
neinnil
/
cpp-taskflow
Public
forked from
taskflow/taskflow
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cpp-taskflow
/
examples
/
do_while_loop.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (24 loc) · 692 Bytes
Breadcrumbs
cpp-taskflow
/
examples
/
do_while_loop.cpp
Copy path
File metadata and controls
34 lines (24 loc) · 692 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
This program demonstrates how to implement do-while control flow
//
using condition tasks.
#
include
<
taskflow/taskflow.hpp
>
int
main
() {
tf::Executor executor;
tf::Taskflow taskflow;
int
i;
auto
[init, body, cond, done] = taskflow.
emplace
(
[&](){ std::cout <<
"
i=0
\n
"
; i=
0
; },
[&](){ std::cout <<
"
i++ => i=
"
; i++; },
[&](){ std::cout << i <<
'
\n
'
;
return
i<
5
?
0
:
1
; },
[&](){ std::cout <<
"
done
\n
"
; }
);
init.
name
(
"
init
"
);
body.
name
(
"
do i++
"
);
cond.
name
(
"
while i<5
"
);
done.
name
(
"
done
"
);
init.
precede
(body);
body.
precede
(cond);
cond.
precede
(body, done);
//
taskflow.dump(std::cout);
executor.
run
(taskflow).
wait
();
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL