Index: doc/theses/mike_brooks_MMath/Makefile
===================================================================
--- doc/theses/mike_brooks_MMath/Makefile	(revision a7d93cb3408e45aae4eb90a63d1c8925d39ae244)
+++ doc/theses/mike_brooks_MMath/Makefile	(revision 048dde4a01cb471ff794e3c97fc7a3ab2ef5c397)
@@ -99,4 +99,7 @@
 	gnuplot plot-pbv.gp
 
+string-graph-allocn.pdf: string-graph-allocn.dat | ${Build}
+	gnuplot plot-allocn.gp
+
 %.pdf: %.fig | ${Build}
 	fig2dev -L pdf $< > ${Build}/$@
Index: doc/theses/mike_brooks_MMath/pictures/string-graph-allocn.dat
===================================================================
--- doc/theses/mike_brooks_MMath/pictures/string-graph-allocn.dat	(revision 048dde4a01cb471ff794e3c97fc7a3ab2ef5c397)
+++ doc/theses/mike_brooks_MMath/pictures/string-graph-allocn.dat	(revision 048dde4a01cb471ff794e3c97fc7a3ab2ef5c397)
@@ -0,0 +1,34 @@
+"20"
+37.57387939	523966
+38.26856727	267966
+38.34057815	139966
+40.9542182	75966
+49.04897979	43966
+
+	
+"50"
+39.19895731	1035966
+39.87845037	523966
+41.49461826	267966
+43.93197294	139966
+55.66226762	75966
+
+	
+"100"
+49.91339656	1035966
+52.77415167	523966
+56.24221922	267966
+68.7938433	139966
+
+	
+"200"
+60.34748054	2059966
+62.27155489	1035966
+66.30852009	523966
+77.02657321	267966
+
+	
+"500"
+85.82192568	2059966
+88.86608016	1035966
+120.1011048	523966
Index: doc/theses/mike_brooks_MMath/plot-allocn.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plot-allocn.gp	(revision 048dde4a01cb471ff794e3c97fc7a3ab2ef5c397)
+++ doc/theses/mike_brooks_MMath/plot-allocn.gp	(revision 048dde4a01cb471ff794e3c97fc7a3ab2ef5c397)
@@ -0,0 +1,24 @@
+set terminal pdf color enhanced size 6.0in,3.0in font "Times,17"
+#set terminal postscript portrait enhanced size 7.5, 10. color solid 9.5;
+#set terminal wxt size 950,1250
+
+DIR="pictures"
+
+set macros
+set output "build/string-graph-allocn.pdf"
+#set pointsize 2.0
+set grid
+set key top left
+#set xtics (1,2,5,10,20,50,100,200,500)
+set logscale x 2
+set logscale y 2
+set xlabel "Duration (ns)" offset 2,0
+set ylabel "Space Used (byte)"
+set linetype 3 dashtype 2
+set linetype 4 dashtype 2
+plot DIR."/string-graph-allocn.dat" \
+	   i 0 using 1:2 title columnheader(1) with linespoints lt rgb "blue"	pt  2  ps 1 lw 1, \
+	'' i 1 using 1:2 title columnheader(1) with linespoints lt rgb "red"	pt  3  ps 1 lw 1, \
+	'' i 2 using 1:2 title columnheader(1) with linespoints lt rgb "gray"	pt  6  ps 1 lw 1, \
+	'' i 3 using 1:2 title columnheader(1) with linespoints lt rgb "yellow"	pt  8  ps 1 lw 1, \
+	'' i 4 using 1:2 title columnheader(1) with linespoints lt rgb "cyan"	pt  8  ps 1 lw 1
Index: doc/theses/mike_brooks_MMath/string.tex
===================================================================
--- doc/theses/mike_brooks_MMath/string.tex	(revision a7d93cb3408e45aae4eb90a63d1c8925d39ae244)
+++ doc/theses/mike_brooks_MMath/string.tex	(revision 048dde4a01cb471ff794e3c97fc7a3ab2ef5c397)
@@ -681,5 +681,6 @@
 \begin{figure}
 \centering
-  \includegraphics[width=\textwidth]{string-graph-allocn.png}
+  \includegraphics{string-graph-allocn.pdf}
+% \includegraphics[width=\textwidth]{string-graph-allocn.png}
   \caption{Space and time performance, under varying fraction-live targets, for the five string lengths shown, at (\emph{Fixed-size} corpus construction.
 [MISSING] The identified clusters are for the default fraction-live target, which is 30\%.
