X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttv%2Flttv%2Fsync%2Fevent_analysis_eval.h;h=dbd4ac954e870a63e4eaa3c31560f73ceedadaf3;hb=0a87ec9a018cc9731ce3b04309eaa4dcc77df6d2;hp=c0b02d0daa53d5277b8050000e0d1a1f4d71c127;hpb=66eaf2eba602c331d08677dbb59ec3f9e40f0ccc;p=lttv.git diff --git a/lttv/lttv/sync/event_analysis_eval.h b/lttv/lttv/sync/event_analysis_eval.h index c0b02d0d..dbd4ac95 100644 --- a/lttv/lttv/sync/event_analysis_eval.h +++ b/lttv/lttv/sync/event_analysis_eval.h @@ -1,19 +1,18 @@ /* This file is part of the Linux Trace Toolkit viewer - * Copyright (C) 2009 Benjamin Poirier + * Copyright (C) 2009, 2010 Benjamin Poirier * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License Version 2 as - * published by the Free Software Foundation; + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 2.1 of the License, or (at + * your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program. If not, see . */ #ifndef EVENT_ANALYSIS_EVAL_H @@ -46,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; @@ -58,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; @@ -131,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; @@ -153,4 +152,6 @@ typedef struct AnalysisGraphsEval* graphs; } AnalysisDataEval; +void registerAnalysisEval(); + #endif