Skip to content
Snippets Groups Projects
Commit 00b75845 authored by Daniel Maier's avatar Daniel Maier
Browse files

info2: cleanup

parent 38eea01d
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,8 @@ int main(int argc, char *argv[]) {
std::vector<perf_t> list{ std::make_move_iterator(std::begin(l)),
std::make_move_iterator(std::end(l)) };
for(unsigned i = 0; i < pow(2, list.size()); i++) {
for(unsigned i = 1; i < pow(2, list.size()); i++) {
std::cout << "config;" << i << "\n";
for(unsigned j = 0; j < list.size(); j++) {
if ((i>>j)&1) {
print_scop(list[j]);
......@@ -88,6 +89,7 @@ int main(int argc, char *argv[]) {
std::cout << "\n";
}
/*
for(auto [j, xx, k]: list) {
std::cout << "scop" << j << ";";
for(auto x = xx.begin(); x != xx.end();) {
......@@ -98,5 +100,6 @@ int main(int argc, char *argv[]) {
}
std::cout << ";" << k << "\n";
}
*/
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment