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

info2: corrent output format

parent 9800bd5c
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,9 @@ int main(int argc, char *argv[]) {
auto print_scop = [&i, &i_, &j, &current_scop]() {
std::cout << "scop" << j << ";";
for(int x = i_; x < i; x++) {
std::cout << " " << x;
std::cout << x;
if(x+1 < i)
std::cout << " ";
}
std::cout << ";" << current_scop->domain->nb_output_dims << "\n";
};
......
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