Index: doc/theses/mike_brooks_MMath/plots/ListCommon.py
===================================================================
--- doc/theses/mike_brooks_MMath/plots/ListCommon.py	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/ListCommon.py	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -7,5 +7,5 @@
 import sys
 import os
-
+from subprocess import Popen, PIPE
 
 def getSingleResults(infileLocal, *,
@@ -17,17 +17,19 @@
     infile = os.path.dirname(os.path.abspath(__file__)) + '/../benchmarks/list/' + infileLocal
 
-    timings = pd.read_csv(
-        infile,
-        names=['RunMoment', 'RunIdx', 'Args', 'Program', 'expt_ops_completed', 'expt_elapsed_sec', 'mean_op_dur_ns'],
-        dtype={'RunMoment':          str,
-            'RunIdx':             np.int64,
-            'Args':               str,
-            'Program':            str,
-            'expt_ops_completed': np.int64,
-            'expt_elapsed_sec':   np.float64,
-            'mean_op_dur_ns':     np.float64},
-        parse_dates=['RunMoment']
-        )
-    #print(timings.head())
+    # grep to remove lines that end in comma; these were error runs
+    with Popen("grep '[^,]$' " + infile, shell=True, stdout=PIPE) as process:
+        timings = pd.read_csv(
+            process.stdout,
+            names=['RunMoment', 'RunIdx', 'Args', 'Program', 'expt_ops_completed', 'expt_elapsed_sec', 'mean_op_dur_ns'],
+            dtype={'RunMoment':          str,
+                'RunIdx':             np.int64,
+                'Args':               str,
+                'Program':            str,
+                'expt_ops_completed': np.int64,
+                'expt_elapsed_sec':   np.float64,
+                'mean_op_dur_ns':     np.float64},
+            parse_dates=['RunMoment']
+            )
+    # print(timings.head())
 
     ## parse executable name and args
Index: doc/theses/mike_brooks_MMath/plots/list-cfa-attrib-remelem.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cfa-attrib-remelem.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-cfa-attrib-remelem.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -20,15 +20,17 @@
 
 set logscale y 2
-set yrange [0.88:2.1];
+set yrange [0.3:10];
 set ytics ( \
-   "+50%%" 2, \
+   "+85%%" 6.666666667, \
+   "+80%%" 5, \
+   "+70%%" 3.333333333, \
+   "+60%%" 2.5, \
    "+40%%" 1.666666667, \
-   "+30%%" 1.428571429, \
    "+20%%" 1.25, \
-   "+10%%" 1.111111111, \
    "0" 1, \
-   "-10%%" 0.909090909, \
    "-20%%" 0.833333333, \
-   "-30%%" 0.769230769, \
+   "-60%%" 0.625, \
+   "-100%%" 0.5, \
+   "-200%%" 0.333333333 \
 )
 set ylabel "Duration (tailq-Relative)" offset -1.0,0
@@ -72,8 +74,8 @@
      SRCDIR.'/list-cfa-attrib-remelem-meta.dat' \
         using 1:(-999):xtic(2) notitle with points, \
-     $Singleton using (2.7 ):(1.99)                         notitle           with points pt 7  lt        rgb "blue", \
-     $Singleton using (2.7 ):(1.83):("◐")                   notitle           with labels       textcolor rgb "dark-goldenrod" font "DejaVuSans-Bold,14", \
-     $Singleton using (3.85):(1.99):("◑")                   notitle           with labels       textcolor rgb "dark-salmon"    font "DejaVuSans-Bold,14", \
-     $Singleton using (3.85):(1.83)                         notitle           with points pt 6  lt        rgb "gray40", \
-     $Singleton using (5.1 ):(1.99)                         notitle           with points pt 3  lt        rgb "dark-turquoise", \
-     $Singleton using (5.1 ):(1.83)                         notitle           with points pt 15 lt        rgb "red"
+     $Singleton using (2.7 ):(8.0)                         notitle           with points pt 7  lt        rgb "blue", \
+     $Singleton using (2.7 ):(6.0):("◐")                   notitle           with labels       textcolor rgb "dark-goldenrod" font "DejaVuSans-Bold,14", \
+     $Singleton using (3.85):(8.0):("◑")                   notitle           with labels       textcolor rgb "dark-salmon"    font "DejaVuSans-Bold,14", \
+     $Singleton using (3.85):(6.0)                         notitle           with points pt 6  lt        rgb "gray40", \
+     $Singleton using (5.1 ):(8.0)                         notitle           with points pt 3  lt        rgb "dark-turquoise", \
+     $Singleton using (5.1 ):(6.0)                         notitle           with points pt 15 lt        rgb "red"
Index: doc/theses/mike_brooks_MMath/plots/list-cfa-attrib.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cfa-attrib.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-cfa-attrib.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -15,13 +15,17 @@
 set logscale y 2
 set yrange [0.75:1.8];
+set yrange [0.3:10];
 set ytics ( \
+   "+85%%" 6.666666667, \
+   "+80%%" 5, \
+   "+70%%" 3.333333333, \
+   "+60%%" 2.5, \
    "+40%%" 1.666666667, \
-   "+30%%" 1.428571429, \
    "+20%%" 1.25, \
-   "+10%%" 1.111111111, \
    "0" 1, \
-   "-10%%" 0.909090909, \
    "-20%%" 0.833333333, \
-   "-30%%" 0.769230769, \
+   "-60%%" 0.625, \
+   "-100%%" 0.5, \
+   "-200%%" 0.333333333 \
 )
 set ylabel "Duration (tailq-Relative)" offset -1.0,0
@@ -61,6 +65,6 @@
      SRCDIR.'/list-cfa-attrib-meta.dat' \
         using 1:(-999):xtic(2) notitle with points, \
-     $Singleton using (2.85):(1.69)                         notitle         with points pt 7  lt rgb "blue"	   , \
-     $Singleton using (4.60):(1.69)                         notitle         with points pt 6  lt rgb "gray40", \
-     $Singleton using (6.30):(1.69)                         notitle         with points pt 3  lt rgb "dark-turquoise"	, \
-     $Singleton using (7.95):(1.69)                         notitle         with points pt 15 lt rgb "red"
+     $Singleton using (2.85):(8.0)                         notitle         with points pt 7  lt rgb "blue"	   , \
+     $Singleton using (4.60):(8.0)                         notitle         with points pt 6  lt rgb "gray40", \
+     $Singleton using (6.30):(8.0)                         notitle         with points pt 3  lt rgb "dark-turquoise"	, \
+     $Singleton using (7.95):(8.0)                         notitle         with points pt 15 lt rgb "red"
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-exout.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-exout.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-cmp-exout.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -14,14 +14,17 @@
 
 set logscale y 2
-set yrange [0.75:1.8];
+set yrange [0.3:10];
 set ytics ( \
+   "+85%%" 6.666666667, \
+   "+80%%" 5, \
+   "+70%%" 3.333333333, \
+   "+60%%" 2.5, \
    "+40%%" 1.666666667, \
-   "+30%%" 1.428571429, \
    "+20%%" 1.25, \
-   "+10%%" 1.111111111, \
    "0" 1, \
-   "-10%%" 0.909090909, \
    "-20%%" 0.833333333, \
-   "-30%%" 0.769230769, \
+   "-60%%" 0.625, \
+   "-100%%" 0.5, \
+   "-200%%" 0.333333333 \
 )
 set ylabel "Duration (tailq-Relative)" offset -1.0,0
@@ -59,5 +62,5 @@
      SRCDIR.'/list-cmp-exout-meta.dat' \
         using 1:(-999):xtic(2) notitle with points, \
-     $Singleton using (3.73):(1.69)                         notitle         with points pt 7  lt rgb "blue"	   , \
-     $Singleton using (5.44):(1.69)                         notitle         with points pt 9  lt rgb "dark-orange", \
-     $Singleton using (7.14):(1.69)                         notitle         with points pt 13 lt rgb "purple"
+     $Singleton using (3.73):(7.50)                         notitle         with points pt 7  lt rgb "blue"	   , \
+     $Singleton using (5.44):(7.50)                         notitle         with points pt 9  lt rgb "dark-orange", \
+     $Singleton using (7.14):(7.50)                         notitle         with points pt 13 lt rgb "purple"
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome-meta.dat
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome-meta.dat	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,5 +1,0 @@
-1	stack\n*\nremelem
-2	queue\n*\nremelem
-3	*\ninsfirst\nremelem
-4	*\ninslast\nremelem
-5	*\n*\nremelem
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome.d
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome.d	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,2 +1,0 @@
-plots/list-cmp-intrl-outcome.gp.INPUTS: build/plot-list-cmp-intrl-outcome.dat plots/list-cmp-intrl-outcome-meta.dat | build
-plots/list-cmp-intrl-outcome.py.INPUTS: benchmarks/list/results-general.csv plots/list-cmp-intrl-outcome-meta.dat
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,63 +1,0 @@
-set terminal pdf color enhanced size 6.0in,3.0in font "Times,17"
-
-INDIR="build"
-OUTDIR="build"
-SRCDIR="plots"
-
-set output OUTDIR.'/plot-list-cmp-intrl-outcome.pdf'
-
-set bmargin 6  # extra room at bottom for multiline x axis labels
-
-set xrange [1:9]
-set xlabel "Operation (movement / polarity / accessor)"  offset 0,-2,0
-set xtics offset 4.2,0
-
-set logscale y 2
-set yrange [0.75:1.8];
-set ytics ( \
-   "40%%" 1.666666667, \
-   "30%%" 1.428571429, \
-   "20%%" 1.25, \
-   "10%%" 1.111111111, \
-   "0%%" 1, \
-   "-10%%" 0.909090909, \
-   "-20%%" 0.833333333, \
-   "-30%%" 0.769230769, \
-)
-set ylabel "Duration (tailq-Relative)"
-
-# Draw axis-like line at speedup=0% (y=1.0)
-set arrow from graph 0, first 1 to graph 1, first 1 nohead lt -1 lw 2
-
-set grid
-set key top center horizontal
-
-BOXSPACING=0.25
-BOXWIDTH=BOXSPACING * .90
-set boxwidth BOXWIDTH absolute
-
-NUM_FXS=3
-
-offset(opNum, fxNum) = opNum + fxNum * BOXSPACING - (NUM_FXS+1) * BOXSPACING / 2 + 0.5
-
-# One row, to plot one-off points
-$Singleton <<EOD
-0
-EOD
-
-# empty candlesticks for quantiles, then
-# varyiously styled points for means, then
-# x axis values, then
-# legend symbol augmentation
-plot INDIR.'/plot-list-cmp-intrl-outcome.dat' \
-        using ($2 == 1 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'upp-upp' with candlesticks lt rgb "dark-orange", \
-     '' using ($2 == 2 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'cfa-cfa' with candlesticks lt rgb "blue"	   , \
-     '' using ($2 == 3 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'lq-list' with candlesticks lt rgb "purple"	, \
-     '' using ($2 == 1 ? (offset($1, $2)) : 1/0):4          notitle         with points pt 7  lt rgb "dark-orange", \
-     '' using ($2 == 2 ? (offset($1, $2)) : 1/0):4          notitle         with points pt 9  lt rgb "blue"	   , \
-     '' using ($2 == 3 ? (offset($1, $2)) : 1/0):4          notitle         with points pt 13 lt rgb "purple"	, \
-     SRCDIR.'/list-cmp-intrl-outcome-meta.dat' \
-        using 1:(-999):xtic(2) notitle with points, \
-     $Singleton using (3.73):(1.69)                         notitle         with points pt 7  lt rgb "dark-orange", \
-     $Singleton using (5.44):(1.69)                         notitle         with points pt 9  lt rgb "blue"	   , \
-     $Singleton using (7.14):(1.69)                         notitle         with points pt 13 lt rgb "purple"
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome.py
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-outcome.py	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,16 +1,0 @@
-import pandas as pd
-import numpy as np
-import os
-import sys
-
-sys.path.insert(0, os.path.dirname(__file__))
-from ListCommon import *
-
-thisPy = os.path.splitext(os.path.basename(__file__))[0]
-
-printManySummary(
-    infileLocal = 'results-general.csv',
-    metafileCore = thisPy,
-    fxs=['upp-upp', 'cfa-cfa', 'lq-list'],
-    tgtInterleave = 0.5
-)
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift-meta.dat
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift-meta.dat	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,5 +1,0 @@
-1	stack\n*\nremelem
-2	queue\n*\nremelem
-3	*\ninsfirst\nremelem
-4	*\ninslast\nremelem
-5	*\n*\nremelem
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift.d
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift.d	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,2 +1,0 @@
-plots/list-cmp-intrl-shift.gp.INPUTS: build/plot-list-cmp-intrl-shift.dat plots/list-cmp-intrl-shift-meta.dat | build
-plots/list-cmp-intrl-shift.py.INPUTS: benchmarks/list/results-general.csv plots/list-cmp-intrl-shift-meta.dat
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,66 +1,0 @@
-set terminal pdf color enhanced size 6.0in,3.0in font "Times,17"
-
-INDIR="build"
-OUTDIR="build"
-SRCDIR="plots"
-
-set output OUTDIR.'/plot-list-cmp-intrl-shift.pdf'
-
-set bmargin 6  # extra room at bottom for multiline x axis labels
-
-set xrange [1:9]
-set xlabel "Operation (movement / polarity / accessor)"  offset 0,-2,0
-set xtics offset 4.2,0
-
-set logscale y 2
-set yrange [0.75:1.8];
-set ytics ( \
-   "40%%" 1.666666667, \
-   "30%%" 1.428571429, \
-   "20%%" 1.25, \
-   "10%%" 1.111111111, \
-   "0%%" 1, \
-   "-10%%" 0.909090909, \
-   "-20%%" 0.833333333, \
-   "-30%%" 0.769230769, \
-)
-set ylabel "Duration (No-Interleave-Relative)"
-
-# Draw axis-like line at speedup=0% (y=1.0)
-set arrow from graph 0, first 1 to graph 1, first 1 nohead lt -1 lw 2
-
-set grid
-set key top center horizontal
-
-BOXSPACING=0.25
-BOXWIDTH=BOXSPACING * .90
-set boxwidth BOXWIDTH absolute
-
-NUM_FXS=4
-
-offset(opNum, fxNum) = opNum + fxNum * BOXSPACING - (NUM_FXS+1) * BOXSPACING / 2 + 0.5
-
-# One row, to plot one-off points
-$Singleton <<EOD
-0
-EOD
-
-# empty candlesticks for quantiles, then
-# varyiously styled points for means, then
-# x axis values, then
-# legend symbol augmentation
-plot INDIR.'/plot-list-cmp-intrl-shift.dat' \
-        using ($2 == 1 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'upp-upp' with candlesticks lt rgb "dark-orange", \
-     '' using ($2 == 2 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'cfa-cfa' with candlesticks lt rgb "blue"	   , \
-     '' using ($2 == 3 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'lq-tailq' with candlesticks lt rgb "magenta"	, \
-     '' using ($2 == 4 ? (offset($1, $2)) : 1/0):10:9:13:12 title 'lq-list' with candlesticks lt rgb "purple"	, \
-     '' using ($2 == 1 ? (offset($1, $2)) : 1/0):4          notitle         with points pt 7  lt rgb "dark-orange", \
-     '' using ($2 == 2 ? (offset($1, $2)) : 1/0):4          notitle         with points pt 9  lt rgb "blue"	   , \
-     '' using ($2 == 3 ? (offset($1, $2)) : 1/0):4          notitle         with points pt 11 lt rgb "magenta"	, \
-     '' using ($2 == 4 ? (offset($1, $2)) : 1/0):4          notitle         with points pt 13 lt rgb "purple"	, \
-     SRCDIR.'/list-cmp-intrl-shift-meta.dat' \
-        using 1:(-999):xtic(2) notitle with points, \
-     $Singleton using (3.73):(1.69)                         notitle         with points pt 7  lt rgb "dark-orange", \
-     $Singleton using (5.44):(1.69)                         notitle         with points pt 9  lt rgb "blue"	   , \
-     $Singleton using (6.14):(1.69)                         notitle         with points pt 11 lt rgb "magenta" , \
-     $Singleton using (7.14):(1.69)                         notitle         with points pt 13 lt rgb "purple"
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift.py
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-intrl-shift.py	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ 	(revision )
@@ -1,17 +1,0 @@
-import pandas as pd
-import numpy as np
-import os
-import sys
-
-sys.path.insert(0, os.path.dirname(__file__))
-from ListCommon import *
-
-thisPy = os.path.splitext(os.path.basename(__file__))[0]
-
-printManySummary(
-    infileLocal = 'results-general.csv',
-    metafileCore = thisPy,
-    fxs=['upp-upp', 'cfa-cfa', 'lq-tailq', 'lq-list'],
-    tgtInterleave = 0.5,
-    measure = 'OpDurRelIntrl'
-)
Index: doc/theses/mike_brooks_MMath/plots/list-cmp-survey.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-cmp-survey.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-cmp-survey.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -14,14 +14,17 @@
 
 set logscale y 2
-set yrange [0.75:1.8];
+set yrange [0.3:10];
 set ytics ( \
+   "+85%%" 6.666666667, \
+   "+80%%" 5, \
+   "+70%%" 3.333333333, \
+   "+60%%" 2.5, \
    "+40%%" 1.666666667, \
-   "+30%%" 1.428571429, \
    "+20%%" 1.25, \
-   "+10%%" 1.111111111, \
    "0" 1, \
-   "-10%%" 0.909090909, \
    "-20%%" 0.833333333, \
-   "-30%%" 0.769230769, \
+   "-60%%" 0.625, \
+   "-100%%" 0.5, \
+   "-200%%" 0.333333333 \
 )
 set ylabel "Duration (tailq-Relative)" offset -1.0,0
@@ -59,5 +62,5 @@
      SRCDIR.'/list-cmp-survey-meta.dat' \
         using 1:(-999):xtic(2) notitle with points, \
-     $Singleton using (3.73):(1.69)                         notitle         with points pt 7  lt rgb "blue"	   , \
-     $Singleton using (5.44):(1.69)                         notitle         with points pt 9  lt rgb "dark-orange", \
-     $Singleton using (7.14):(1.69)                         notitle         with points pt 13 lt rgb "purple"
+     $Singleton using (3.73):(7.50)                         notitle         with points pt 7  lt rgb "blue"	   , \
+     $Singleton using (5.44):(7.50)                         notitle         with points pt 9  lt rgb "dark-orange", \
+     $Singleton using (7.14):(7.50)                         notitle         with points pt 13 lt rgb "purple"
Index: doc/theses/mike_brooks_MMath/plots/list-zoomin-abs.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-zoomin-abs.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-zoomin-abs.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -8,9 +8,9 @@
 
 set grid
-set key top right
+set key top left
 set logscale x 2
 set logscale y
-set yrange [5:12.5];
-set ytics (6,7,8,9,10,11,12)
+set yrange [1:15];
+set ytics (1,2,3,4,5,6,7,8,10,12,14)
 set xrange [0.75:128];
 set xlabel "List length (item count)" offset 2,0
Index: doc/theses/mike_brooks_MMath/plots/list-zoomin-rel.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-zoomin-rel.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-zoomin-rel.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -8,8 +8,8 @@
 
 set grid
-set key top right
+set key bottom left
 set logscale x 2
 set logscale y 2
-set yrange [0.85:1.33];
+set yrange [0.3:1.8];
 set ytics ( \
    "+40%%" 1.666666667, \
@@ -18,7 +18,12 @@
    "+10%%" 1.111111111, \
    "0" 1, \
-   "-10%%" 0.909090909, \
    "-20%%" 0.833333333, \
-   "-30%%" 0.769230769, \
+   "-40%%" 0.714285714, \
+   "-60%%" 0.625, \
+   "-80%%" 0.555555556, \
+   "-100%%" 0.5, \
+   "-130%%" 0.434782609, \
+   "-160%%" 0.384615385, \
+   "-200%%" 0.333333333 \
 )
 set xrange [0.75:128];
Index: doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -10,7 +10,6 @@
 set key top left
 set logscale x
-set xrange [10:*]
-#set logscale y
-#set yrange [32:*];
+set logscale y
+set yrange [1:1000];
 set xlabel "List length (item count)" offset 2,0
 set ylabel "Duration (ns)"
Index: doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp	(revision e57a4053b661d29a797703aca537e9a3ac50df96)
+++ doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp	(revision 7f995d70a7be151c73af0b99e8431a8e394fd041)
@@ -10,7 +10,6 @@
 set key top left
 set logscale x
-set xrange [10:*]
-#set logscale y
-#set yrange [32:200]
+set logscale y
+set yrange [1:1000];
 set xlabel "List length (item count)" offset 2,0
 set ylabel "Duration (ns)"
