summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/benchmark.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/benchmark.cpp b/src/benchmark.cpp
index e393fef..c6ff24a 100644
--- a/src/benchmark.cpp
+++ b/src/benchmark.cpp
@@ -114,7 +114,8 @@ void parse_command_line( int argc, char** argv, bool& latex_tables_output, bool&
algorithms.push_back( TWIST );
algorithms.push_back( ROW );
algorithms.push_back( CHUNK );
- algorithms.push_back( CHUNK_SEQUENTIAL );
+ algorithms.push_back( SPECTRAL_SEQUENCE );
+ // algorithms.push_back( CHUNK_SEQUENTIAL );
}
if( ansaetze.empty() == true ) {
@@ -313,8 +314,10 @@ int main( int argc, char** argv )
std::cout << "\\end{tabular}" << std::endl;
std::cout << "\\end{center}" << std::endl;
- std::cout << "\\caption{ " << input_filename << " }" << std::endl;
- std::cout << "\\label{ phat: " << input_filename << " }" << std::endl;
+ std::string sanitized_input_filename( input_filename );
+ std::replace( sanitized_input_filename.begin( ), sanitized_input_filename.end( ), '_', '-' );
+ std::cout << "\\caption{ " << sanitized_input_filename << " }" << std::endl;
+ std::cout << "\\label{ phat: " << sanitized_input_filename << " }" << std::endl;
std::cout << "\\end{table}" << std::endl << std::endl;
}
}