Skip to content

Commit

Permalink
Removed a handful of CRLF's that had snuck in.
Browse files Browse the repository at this point in the history
  • Loading branch information
eeide committed May 26, 2011
1 parent 926ee8e commit 085740a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions utah/scripts/one_off/reducer_driver.pl
Expand Up @@ -295,19 +295,19 @@ ()
if (-e "$RESULT_FILE") {
open OUT, ">table.tex" or die;
open INF, "<$RESULT_FILE" or die;
print OUT '\documentclass[english]{article}', "\n";
print OUT '\begin{document}', "\n";
print OUT '\begin{table}\small', "\n";
print OUT '\caption{Performance of reduction techniques}', "\n";
print OUT '\begin{tabular}{| c | c | c | c | c | c | c | c | c |}', "\n";
print OUT '\hline', "\n";
print OUT 'id & seed & platform & compiler & manual & eager & blind & simple & berkeley \\\\', "\n";
print OUT '\documentclass[english]{article}', "\n";
print OUT '\begin{document}', "\n";
print OUT '\begin{table}\small', "\n";
print OUT '\caption{Performance of reduction techniques}', "\n";
print OUT '\begin{tabular}{| c | c | c | c | c | c | c | c | c |}', "\n";
print OUT '\hline', "\n";
print OUT 'id & seed & platform & compiler & manual & eager & blind & simple & berkeley \\\\', "\n";
while (my $line = <INF>) {
print OUT $line, ' \\\\', "\n";
$line = <INF>;
}
print OUT '\end{tabular}', "\n";
print OUT '\end{table}', "\n";
print OUT '\end{tabular}', "\n";
print OUT '\end{table}', "\n";
print OUT '\end{document}', "\n";
close OUT;
close INF;
Expand Down

0 comments on commit 085740a

Please sign in to comment.