Skip to content
Snippets Groups Projects
Commit 4227d319 authored by Xuan Thang Nguyen's avatar Xuan Thang Nguyen
Browse files

flushing after every calc

parent 0d549e96
No related branches found
No related tags found
No related merge requests found
......@@ -238,14 +238,31 @@ void start(ostream & out, string delim)
out << "2^" << pow << delim;
out << fixed << setprecision(3);
out << random(size) << delim;
out.flush();
out << shuffle(size) << delim;
out.flush();
out << sorted(size) << delim;
out.flush();
out << almostSorted(size) << delim;
out.flush();
out << decreasing(size) << delim;
out.flush();
out << gaussian(size) << delim;
out.flush();
out << bucket(size) << delim;
out.flush();
out << staggared(size) << delim;
out.flush();
out << zero_entropy(size);
out << endl;
}
......
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