Index: /trunk/psLib/src/sys/psConfigure.c
===================================================================
--- /trunk/psLib/src/sys/psConfigure.c	(revision 4204)
+++ /trunk/psLib/src/sys/psConfigure.c	(revision 4205)
@@ -13,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-07 22:53:40 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -33,5 +33,5 @@
 }
 
-void psLibInit(bool predictable, const char* timeConfig)
+void psLibInit(const char* timeConfig)
 {
     // XXX: Still needs error codes to be set
Index: /trunk/psLib/src/sys/psConfigure.h
===================================================================
--- /trunk/psLib/src/sys/psConfigure.h	(revision 4204)
+++ /trunk/psLib/src/sys/psConfigure.h	(revision 4205)
@@ -13,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -42,8 +42,6 @@
  *  current, a non-NULL psErr is returned with code PS_ERR_NONE.
  *
- *  @return void: void.
  */
 void psLibInit(
-    bool predictable,
     const char* timeConfig           ///< Filename of config file for psTime.
 );
Index: /trunk/psLib/src/sysUtils/psConfigure.c
===================================================================
--- /trunk/psLib/src/sysUtils/psConfigure.c	(revision 4204)
+++ /trunk/psLib/src/sysUtils/psConfigure.c	(revision 4205)
@@ -13,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-07 22:53:40 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -33,5 +33,5 @@
 }
 
-void psLibInit(bool predictable, const char* timeConfig)
+void psLibInit(const char* timeConfig)
 {
     // XXX: Still needs error codes to be set
Index: /trunk/psLib/src/sysUtils/psConfigure.h
===================================================================
--- /trunk/psLib/src/sysUtils/psConfigure.h	(revision 4204)
+++ /trunk/psLib/src/sysUtils/psConfigure.h	(revision 4205)
@@ -13,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -42,8 +42,6 @@
  *  current, a non-NULL psErr is returned with code PS_ERR_NONE.
  *
- *  @return void: void.
  */
 void psLibInit(
-    bool predictable,
     const char* timeConfig           ///< Filename of config file for psTime.
 );
Index: /trunk/psLib/test/astronomy/tst_psTime_01.c
===================================================================
--- /trunk/psLib/test/astronomy/tst_psTime_01.c	(revision 4204)
+++ /trunk/psLib/test/astronomy/tst_psTime_01.c	(revision 4205)
@@ -23,6 +23,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.26 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-05-31 21:56:31 $
+ *  @version $Revision: 1.27 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -161,5 +161,5 @@
 
     // Initialize library internal structures
-    psLibInit(true,"psTime.config");
+    psLibInit("psTime.config");
 
     if( !runTestSuite(stderr,"psTime",tests,argc,argv)) {
@@ -1138,5 +1138,5 @@
 //    char *testString = "2004-07-21T18:22:24.272Z";
 //
-//    psLibInit(true,"psTime.config");
+//    psLibInit("psTime.config");
 //
 // Test time was taken at July 21, 2004 at 18:22:24.272044
Index: /trunk/psLib/test/astronomy/tst_psTime_02.c
===================================================================
--- /trunk/psLib/test/astronomy/tst_psTime_02.c	(revision 4204)
+++ /trunk/psLib/test/astronomy/tst_psTime_02.c	(revision 4205)
@@ -12,6 +12,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-05-31 21:57:22 $
+ *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -67,5 +67,5 @@
 
     // Initialize library internal structures
-    psLibInit(true,"psTime.config");
+    psLibInit("psTime.config");
 
     if( !runTestSuite(stderr,"psTime",tests,argc,argv)) {
Index: /trunk/psLib/test/astronomy/tst_psTime_03.c
===================================================================
--- /trunk/psLib/test/astronomy/tst_psTime_03.c	(revision 4204)
+++ /trunk/psLib/test/astronomy/tst_psTime_03.c	(revision 4205)
@@ -11,6 +11,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.17 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-05-31 22:01:27 $
+ *  @version $Revision: 1.18 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -188,5 +188,5 @@
 
     // Initialize library internal structures
-    psLibInit(true,"psTime.config");
+    psLibInit("psTime.config");
 
     if( !runTestSuite(stderr,"psTime",tests,argc,argv)) {
Index: /trunk/psLib/test/astronomy/tst_psTime_04.c
===================================================================
--- /trunk/psLib/test/astronomy/tst_psTime_04.c	(revision 4204)
+++ /trunk/psLib/test/astronomy/tst_psTime_04.c	(revision 4205)
@@ -15,6 +15,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-05-31 22:02:25 $
+ *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-06-10 01:41:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -55,5 +55,5 @@
 {
     // Test A - Initialize time
-    psLibInit(true, "psTime.config");
+    psLibInit("psTime.config");
     psLibFinalize();
 
@@ -64,5 +64,5 @@
 {
     // Test B - Attempt to open non-existant time config file
-    psLibInit(true, "zzz");
+    psLibInit("zzz");
 
     return 0;
@@ -72,5 +72,5 @@
 {
     // Test C - Attempt to open non-existant time data files
-    psLibInit(true, "test.psTime.config1");
+    psLibInit("test.psTime.config1");
     psLibFinalize();
 
@@ -81,5 +81,5 @@
 {
     // Test D - Attempt to read incorrect number of files
-    psLibInit(true, "test.psTime.config2");
+    psLibInit("test.psTime.config2");
     psLibFinalize();
 
@@ -90,5 +90,5 @@
 {
     // Test E - Attempt to read incorrect number of from values
-    psLibInit(true, "test.psTime.config3");
+    psLibInit("test.psTime.config3");
     psLibFinalize();
 
@@ -99,5 +99,5 @@
 {
     // Test F - Attempt to read data file with typo in number
-    psLibInit(true, "test.psTime.config4");
+    psLibInit("test.psTime.config4");
     psLibFinalize();
 
