diff --git a/Surface_mesh_shortest_path/benchmark/Surface_mesh_shortest_path/compileBenchmarks.py b/Surface_mesh_shortest_path/benchmark/Surface_mesh_shortest_path/compileBenchmarks.py index 50db4ff2a28..e8af54469fc 100644 --- a/Surface_mesh_shortest_path/benchmark/Surface_mesh_shortest_path/compileBenchmarks.py +++ b/Surface_mesh_shortest_path/benchmark/Surface_mesh_shortest_path/compileBenchmarks.py @@ -138,7 +138,7 @@ for numSources in sampleRange: tableFile = open(make_table_file_name(tableFileBase, numSources), "w"); print_table(infoSet, config, tableFile); tableFile.close(); - + if plotFileBase != None: for runParams in [('query', 4, "Average Queries Per Second"), ('construction', 3, "Average Construction Time"), ('memory', 5, "Peak Memory Usage")]: plotCommands = []; @@ -146,7 +146,7 @@ if plotFileBase != None: plotCommands.append('"%s" using 1:%d with lines title "%s"' % (make_model_data_file_name(dataFileBase, k), runParams[1], os.path.basename(k))); plotCommand = "plot " + ', '.join(plotCommands); plotCommandFile = tempfile.TemporaryFile(); - plotCommandFile.write('set terminal png size 1280,960;\n'); + plotCommandFile.write('set terminal png size 640,480;\n'); plotCommandFile.write('set output "%s";\n' % make_figure_file_name(plotFileBase, runParams[0])); plotCommandFile.write('set xlabel "Number of Source Points";\n'); plotCommandFile.write('set ylabel "%s";\n' % runParams[2]); diff --git a/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_construction.png b/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_construction.png index d71ffe797ab..517de4ca458 100755 Binary files a/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_construction.png and b/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_construction.png differ diff --git a/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_memory.png b/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_memory.png index d06077fb508..2948147258e 100755 Binary files a/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_memory.png and b/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_memory.png differ diff --git a/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_query.png b/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_query.png index 69353fc9b3e..2a95210e92f 100755 Binary files a/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_query.png and b/Surface_mesh_shortest_path/doc/Surface_mesh_shortest_path/fig/benchmark_plot_query.png differ