Perform trace factor reduction as a separate step
[lttv.git] / lttv / lttv / sync / event_analysis_eval.h
index fcde82f8a66345b03c93421dd4b085d82a409e57..dbd4ac954e870a63e4eaa3c31560f73ceedadaf3 100644 (file)
@@ -45,8 +45,14 @@ typedef struct
 
 typedef struct
 {
-       double broadcastDiffSum;
        unsigned int broadcastNb;
+       double broadcastStdevSum;
+
+       unsigned int broadcastPairNb;
+       double broadcastRangeMin;
+       double broadcastRangeMax;
+       double broadcastSum;
+       double broadcastSumSquares;
 
        // MessageStats messageStats[traceNb][traceNb]
        MessageStats** messageStats;
@@ -57,13 +63,9 @@ typedef struct
        GHashTable* exchangeRtt;
 
 #ifdef HAVE_LIBGLPK
-       /* FactorsCHull** chFactorsArray[traceNum][traceNum]
-        * FactorsCHull** lpFactorsArray[traceNum][traceNum]
-        *
-        * As usual, only the lower triangular part of theses matrixes is
-        * allocated */
-       FactorsCHull** chFactorsArray;
-       FactorsCHull** lpFactorsArray;
+       // Only the lower triangular part of theses matrixes is used
+       AllFactors* chFactorsArray;
+       AllFactors* lpFactorsArray;
 #endif
 } AnalysisStatsEval;
 
@@ -130,11 +132,9 @@ typedef struct
         * lps[i][j] where i > j */
        glp_prob*** lps;
 
-       /* Factors lpFactors[traceNum][traceNum]
-        *
-        * Only the lower triangular part of the matrix is allocated, that is
+       /* Only the lower triangular part of the matrix is allocated, that is
         * lpFactorsArray[i][j] where i > j */
-       FactorsCHull** lpFactorsArray;
+       AllFactors* lpFactorsArray;
 #endif
 } AnalysisGraphsEval;
 
This page took 0.023962 seconds and 4 git commands to generate.