Index: /issm/trunk/src/mex/EnumToString/EnumToString.cpp
===================================================================
--- /issm/trunk/src/mex/EnumToString/EnumToString.cpp	(revision 8246)
+++ /issm/trunk/src/mex/EnumToString/EnumToString.cpp	(revision 8247)
@@ -9,7 +9,4 @@
 	char    *name    = NULL;
 	int      enum_in;
-
-	/*Boot module: */
-	MODULEBOOT();
 
 	/*checks on arguments on the matlab side: */
@@ -24,7 +21,4 @@
 	/* output: */
 	WriteData(NAME,name);
-
-	/*end module: */
-	MODULEEND();
 }
 
Index: /issm/trunk/src/mex/StringToEnum/StringToEnum.cpp
===================================================================
--- /issm/trunk/src/mex/StringToEnum/StringToEnum.cpp	(revision 8246)
+++ /issm/trunk/src/mex/StringToEnum/StringToEnum.cpp	(revision 8247)
@@ -9,7 +9,4 @@
 	char    *name    = NULL;
 	int      enum_out;
-
-	/*Boot module: */
-	MODULEBOOT();
 
 	/*checks on arguments on the matlab side: */
@@ -24,7 +21,4 @@
 	/* output: */
 	WriteData(ENUMOUT,enum_out);
-
-	/*end module: */
-	MODULEEND();
 }
 
Index: /issm/trunk/src/mex/Test/Test.cpp
===================================================================
--- /issm/trunk/src/mex/Test/Test.cpp	(revision 8246)
+++ /issm/trunk/src/mex/Test/Test.cpp	(revision 8247)
@@ -14,25 +14,6 @@
 	int      numel;
 
-	printf("Parsing options:\n");
-	options=new Options(0,nrhs,prhs);
-
-	options->Get(&test,"test",1.);
-	printf("\n value of \"test\" is %g\n",test);
-
-	options->Get(&name,"model.name","default");
-	printf("\n value of \"model.name\" is %s\n",name);
-
-	options->Get(&test,"CELL[0,2]",1.);
-	printf("\n value of \"CELL[0,2]\" is %g\n",test);
-
-	options->Get(&logical,"logical",true);
-	printf("\n value of \"logical\" is %s\n",logical?"true":"false");
-
-	options->Get(&matrix,&numel,"matrix");
-	printarray(matrix,numel);
-
-	delete options;
-	xfree((void**)&name);
-	xfree((void**)&matrix);
+	MODULEBOOT();
+	MODULEEND();
 }
 
