diff Matrix_Mult.h @ 15:a8a3d98e1af4

Compiles, but does not yet run properly
author Some Random Person <seanhalle@yahoo.com>
date Tue, 13 Mar 2012 10:07:00 -0700
parents 1461ed1901cc
children
line diff
     1.1 --- a/Matrix_Mult.h	Sat Mar 10 20:35:37 2012 -0800
     1.2 +++ b/Matrix_Mult.h	Tue Mar 13 10:07:00 2012 -0700
     1.3 @@ -15,8 +15,7 @@
     1.4  
     1.5  //==============================  Structures  ==============================
     1.6  
     1.7 -typedef
     1.8 -struct
     1.9 +typedef struct
    1.10   { int32 numRows;
    1.11     int32 numCols;
    1.12     float32 *array;  //2D, but dynamically sized, so use addr arith
    1.13 @@ -31,8 +30,7 @@
    1.14   *  the correct type to tell the compiler how to access fields.
    1.15   * This keeps all app-specific things out of the DKU directory, as per the
    1.16   *  DKU standard. */
    1.17 -typedef
    1.18 -struct
    1.19 +typedef struct
    1.20   { 
    1.21        // pointers to shared data..  the result matrix must be created when the
    1.22        //  left and right matrices are put into the root ancestor DKUPiece.