Mentions légales du service

Skip to content
Snippets Groups Projects
Commit babb24d9 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

Suppressed superflous nbiter

parent 18252c35
Branches bug15086
No related tags found
No related merge requests found
...@@ -215,7 +215,7 @@ def print_one_series( alldf, plotinfo, patterns, operators ): ...@@ -215,7 +215,7 @@ def print_one_series( alldf, plotinfo, patterns, operators ):
plot_average_curve( alldf, indexes, plotlabel, xlabel, xmax, ymax, col, operators ) plot_average_curve( alldf, indexes, plotlabel, xlabel, xmax, ymax, col, operators )
### Print all plots of an experience extracted from the latexfile ### Print all plots of an experience extracted from the latexfile
def print_all_series( allplots, alldf, operators, nbiter ): def print_all_series( allplots, alldf, operators ):
for group in allplots: for group in allplots:
for plot in group: for plot in group:
# a plot: [['Size', 'Games', '10000', '120'], ['20180601-NOOR', 'clever-nr-gen'], ['20180529-NOOR', 'clever-nr']] # a plot: [['Size', 'Games', '10000', '120'], ['20180601-NOOR', 'clever-nr-gen'], ['20180529-NOOR', 'clever-nr']]
...@@ -231,4 +231,4 @@ def print_all_series( allplots, alldf, operators, nbiter ): ...@@ -231,4 +231,4 @@ def print_all_series( allplots, alldf, operators, nbiter ):
xlabel = plotinfo[1] xlabel = plotinfo[1]
xmax = int(plotinfo[2]) xmax = int(plotinfo[2])
ymax = int(plotinfo[3]) ymax = int(plotinfo[3])
plot_average_curve( alldf, indexes, plotlabel, xlabel, xmax, ymax, col, operators, nbiter ) plot_average_curve( alldf, indexes, plotlabel, xlabel, xmax, ymax, col, operators )
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