Index: doc/theses/andrew_beach_MMath/code/CondMatch.java
===================================================================
--- doc/theses/andrew_beach_MMath/code/CondMatch.java	(revision ee23a8d0b19c3c92187b39ec38ee19086eb2b62d)
+++ doc/theses/andrew_beach_MMath/code/CondMatch.java	(revision 11ad42ff7d5390314633769f10ba100d0b136eb5)
@@ -22,10 +22,9 @@
 	public static void main(String[] args) {
 		int times = 1;
-		int total_frames = 1;
 		if (0 < args.length) {
 			times = Integer.parseInt(args[0]);
 		}
 		if (1 < args.length) {
-			total_frames = Integer.parseInt(args[1]);
+			should_catch = 0 != Integer.parseInt(args[1]);
 		}
 
Index: doc/theses/andrew_beach_MMath/code/cond-match-r.cfa
===================================================================
--- doc/theses/andrew_beach_MMath/code/cond-match-r.cfa	(revision ee23a8d0b19c3c92187b39ec38ee19086eb2b62d)
+++ doc/theses/andrew_beach_MMath/code/cond-match-r.cfa	(revision 11ad42ff7d5390314633769f10ba100d0b136eb5)
@@ -25,10 +25,9 @@
 int main(int argc, char * argv[]) {
 	unsigned int times = 1;
-	unsigned int total_frames = 1;
 	if (1 < argc) {
 		times = strtol(argv[1], 0p, 10);
 	}
 	if (2 < argc) {
-		total_frames = strtol(argv[2], 0p, 10);
+		should_catch = strtol(argv[2], 0p, 10);
 	}
 
Index: doc/theses/andrew_beach_MMath/code/cond-match.cfa
===================================================================
--- doc/theses/andrew_beach_MMath/code/cond-match.cfa	(revision ee23a8d0b19c3c92187b39ec38ee19086eb2b62d)
+++ doc/theses/andrew_beach_MMath/code/cond-match.cfa	(revision 11ad42ff7d5390314633769f10ba100d0b136eb5)
@@ -28,4 +28,7 @@
 		times = strtol(argv[1], 0p, 10);
 	}
+	if (2 < argc) {
+		should_catch = strtol(argv[2], 0p, 10);
+	}
 
 	Time start_time = time();
Index: doc/theses/andrew_beach_MMath/code/cond-match.cpp
===================================================================
--- doc/theses/andrew_beach_MMath/code/cond-match.cpp	(revision ee23a8d0b19c3c92187b39ec38ee19086eb2b62d)
+++ doc/theses/andrew_beach_MMath/code/cond-match.cpp	(revision 11ad42ff7d5390314633769f10ba100d0b136eb5)
@@ -27,10 +27,9 @@
 int main(int argc, char * argv[]) {
 	unsigned int times = 1;
-	unsigned int total_frames = 1;
 	if (1 < argc) {
 		times = strtol(argv[1], nullptr, 10);
 	}
 	if (2 < argc) {
-		total_frames = strtol(argv[2], nullptr, 10);
+		should_catch = strtol(argv[2], nullptr, 10);
 	}
 
