Index: trunk/psLib/src/dataManip/psConstants.h
===================================================================
--- trunk/psLib/src/dataManip/psConstants.h	(revision 3405)
+++ trunk/psLib/src/dataManip/psConstants.h	(revision 3476)
@@ -6,6 +6,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-24 00:19:51 $
+ *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-03-22 21:52:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -191,5 +191,5 @@
 #define PS_VECTOR_CHECK_NULL(NAME, RVAL) PS_VECTOR_CHECK_NULL_GENERAL(NAME, return RVAL)
 #define PS_VECTOR_CHECK_NULL_GENERAL(NAME, CLEANUP) \
-if (NAME == NULL || NAME->data.V == NULL) { \
+if (NAME == NULL || NAME->data.U8 == NULL) { \
     psError(PS_ERR_BAD_PARAMETER_NULL, true, \
             "Unallowable operation: psVector %s or its data is NULL.", \
@@ -272,5 +272,5 @@
     NEW_STATIC32 = psVectorRecycle(NEW_STATIC32, OLD->n, PS_TYPE_F32); \
     p_psMemSetPersistent(NEW_STATIC32, true); \
-    p_psMemSetPersistent(NEW_STATIC32->data.V, true); \
+    p_psMemSetPersistent(NEW_STATIC32->data.U8, true); \
     for (i=0; i < OLD->n ; i++) { \
         NEW_STATIC32->data.F32[i] = (float) OLD->data.F64[i]; \
@@ -285,5 +285,5 @@
     NEW_STATIC64 = psVectorRecycle(NEW_STATIC64, OLD->n, PS_TYPE_F64); \
     p_psMemSetPersistent(NEW_STATIC64, true); \
-    p_psMemSetPersistent(NEW_STATIC64->data.V, true); \
+    p_psMemSetPersistent(NEW_STATIC64->data.U8, true); \
     for (i=0; i < OLD->n ; i++) { \
         NEW_STATIC64->data.F64[i] = (double) OLD->data.F32[i]; \
@@ -295,5 +295,5 @@
 VEC = psVectorRecycle(VEC, N, PS_TYPE_F32); \
 p_psMemSetPersistent(VEC, true); \
-p_psMemSetPersistent(VEC->data.V, true); \
+p_psMemSetPersistent(VEC->data.U8, true); \
 for (int i=0;i<N;i++) { \
     VEC->data.F32[i] = 1.0; \
@@ -303,5 +303,5 @@
 VEC = psVectorRecycle(VEC, N, PS_TYPE_F64); \
 p_psMemSetPersistent(VEC, true); \
-p_psMemSetPersistent(VEC->data.V, true); \
+p_psMemSetPersistent(VEC->data.U8, true); \
 for (int i=0;i<N;i++) { \
     VEC->data.F64[i] = 1.0; \
@@ -311,5 +311,5 @@
 VEC = psVectorRecycle(VEC, N, PS_TYPE_F32); \
 p_psMemSetPersistent(VEC, true); \
-p_psMemSetPersistent(VEC->data.V, true); \
+p_psMemSetPersistent(VEC->data.U8, true); \
 for (int i=0;i<N;i++) { \
     VEC->data.F32[i] = (float) i; \
@@ -319,5 +319,5 @@
 VEC = psVectorRecycle(VEC, N, PS_TYPE_F64); \
 p_psMemSetPersistent(VEC, true); \
-p_psMemSetPersistent(VEC->data.V, true); \
+p_psMemSetPersistent(VEC->data.U8, true); \
 for (int i=0;i<N;i++) { \
     VEC->data.F64[i] = (float) i; \
@@ -328,5 +328,5 @@
 NAME = psVectorRecycle(NAME, SIZE, TYPE); \
 p_psMemSetPersistent(NAME, true); \
-p_psMemSetPersistent(NAME->data.V, true); \
+p_psMemSetPersistent(NAME->data.U8, true); \
 
 #define PS_VECTOR_DECLARE_ALLOC_STATIC(NAME, SIZE, TYPE) \
Index: trunk/psLib/src/dataManip/psMatrix.c
===================================================================
--- trunk/psLib/src/dataManip/psMatrix.c	(revision 3405)
+++ trunk/psLib/src/dataManip/psMatrix.c	(revision 3476)
@@ -21,6 +21,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-28 23:34:10 $
+ *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-03-22 21:52:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -216,5 +216,5 @@
 
     (*outPerm)->n = numCols;
-    perm.data = (*outPerm)->data.V;
+    perm.data = (psPtr)((*outPerm)->data.U8);
     lu = gsl_matrix_alloc(numRows, numCols);
 
@@ -273,5 +273,5 @@
     outVector->n = numCols;
     perm.size = inPerm->n;
-    perm.data = inPerm->data.V;
+    perm.data = (psPtr)(inPerm->data.U8);
 
     // Solve for {x} in equation: {b} = [A]{x}
@@ -580,5 +580,5 @@
     }
 
-    memcpy(outVector->data.V, inImage->data.V[0], size);
+    memcpy(outVector->data.U8, inImage->data.U8[0], size);
 
     return outVector;
@@ -637,5 +637,5 @@
     PS_CHECK_DIMEN_AND_TYPE(outImage, PS_DIMEN_IMAGE, VECTORTOMATRIX_CLEANUP);
 
-    memcpy(outImage->data.V[0], inVector->data.V, size);
+    memcpy(outImage->data.U8[0], inVector->data.U8, size);
 
     return outImage;
Index: trunk/psLib/src/dataManip/psMinimize.c
===================================================================
--- trunk/psLib/src/dataManip/psMinimize.c	(revision 3405)
+++ trunk/psLib/src/dataManip/psMinimize.c	(revision 3476)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.106 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:23 $
+ *  @version $Revision: 1.107 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-03-22 21:52:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -1608,5 +1608,5 @@
         myParamMask = psVectorRecycle(myParamMask, params->n, PS_TYPE_U8);
         p_psMemSetPersistent(myParamMask, true);
-        p_psMemSetPersistent(myParamMask->data.V, true);
+        p_psMemSetPersistent(myParamMask->data.U8, true);
         for (i=0;i<myParamMask->n;i++) {
             myParamMask->data.U8[i] = 0;
Index: trunk/psLib/src/dataManip/psVectorFFT.c
===================================================================
--- trunk/psLib/src/dataManip/psVectorFFT.c	(revision 3405)
+++ trunk/psLib/src/dataManip/psVectorFFT.c	(revision 3476)
@@ -5,6 +5,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:23 $
+ *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-03-22 21:52:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -87,5 +87,5 @@
         }
         out->type.type = PS_TYPE_F32;
-        out->data.V = psRealloc(out->data.V,PSELEMTYPE_SIZEOF(PS_TYPE_F32)*out->nalloc);
+        out->data.U8 = psRealloc(out->data.U8,PSELEMTYPE_SIZEOF(PS_TYPE_F32)*out->nalloc);
     }
 
@@ -113,5 +113,5 @@
         out = psVectorRecycle(out, numElements, type);
         out->n = numElements;
-        memcpy(out->data.V, in->data.V, numElements * PSELEMTYPE_SIZEOF(type));
+        memcpy(out->data.U8, in->data.U8, numElements * PSELEMTYPE_SIZEOF(type));
         return out;
     }
@@ -172,5 +172,5 @@
         out = psVectorRecycle(out, numElements, type);
         out->n = numElements;
-        memset(out->data.V, 0, PSELEMTYPE_SIZEOF(type) * numElements);
+        memset(out->data.U8, 0, PSELEMTYPE_SIZEOF(type) * numElements);
         return out;
     }
@@ -298,5 +298,5 @@
         out = psVectorRecycle(out, numElements, type);
         out->n = numElements;
-        memcpy(out->data.V, in->data.V, PSELEMTYPE_SIZEOF(type) * numElements);
+        memcpy(out->data.U8, in->data.U8, PSELEMTYPE_SIZEOF(type) * numElements);
         return out;
     }
