/usr/include/trilinos/ml_viz_stats.h is in libtrilinos-ml-dev 12.4.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | /********************************************************************* */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
#ifndef __MLVIZSTATS__
#define __MLVIZSTATS__
/*MS*/
#define ML_AGGREGATE_VIZ_STATS_ID 24680
typedef struct ML_Aggregate_Viz_Stats_Struct
{
int id;
double *x;
double *y;
double *z;
int Ndim;
int *graph_decomposition;
int Nlocal;
int Naggregates;
int local_or_global;
int is_filled;
int MaxNodesPerAgg;
void *Amatrix; /* void * so that I do not have to include
ml_operator.h */
/* Stuff for Zoltan */
int zoltan_type;
int zoltan_estimated_its;
int zoltan_timers;
int smoothing_steps;
} ML_Aggregate_Viz_Stats;
/*ms*/
#endif /* #ifndef __MLAGGMETIS__ */
|