Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

over 3 years ago

Language

C++

Compiler

gcc 10.2.0

Options
Optimization
Boost 1.75.0
C++2a(GNU)
no pedantic
Raw compiler options
-DBOOST_ALLOW_DEPRECATED_HEADERS

Author

anonymous

over 3 years ago

input.txt

$ g++ prog.cc -O2 -march=native -I/opt/wandbox/boost-1.75.0-gcc-10.2.0/include -std=gnu++2a -DBOOST_ALLOW_DEPRECATED_HEADERS
Parse success
a0 --> a1 
a1 --> a2 b3 
a2 --> a3 
a3 --> a0 c2 
b0 --> b1 
b1 --> b2 
b2 --> b3 a3 
b3 --> c2 
c1 --> a0 b0 
c2 --> 

 ---- GRAPHVIZ:
digraph "" {
subgraph G {
subgraph cluster_0 {
0;
1;
2;
3;
0 -> 1;
1 -> 2;
2 -> 3;
3 -> 0;
}
subgraph cluster_1 {
4;
5;
6;
7;
4 -> 5;
5 -> 6;
6 -> 7;
}
8;
9;
1 -> 7;
3 -> 9;
6 -> 3;
7 -> 9;
8 -> 0;
8 -> 4;
}
}
Exit Code:
0