/usr/include/trilinos/ml_xyt.h is in libtrilinos-ml-dev 12.10.1-3.
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | /* ******************************************************************** */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
#ifndef __MLXYT__
#define __MLXYT__
#include "ml_common.h"
#include "ml_operator.h"
#ifndef ML_CPP
#ifdef __cplusplus
extern "C" {
#endif
#endif
extern void setup_henry(ML *my_ml, int grid0, int **imapper, int **separator,
int **sep_size, int *Nseparators, int *Nlocal, int *Nghost,
ML_Operator **matvec_data);
int CSRxyt_submv(ML_Operator *Amat, double p[], double ap[]);
int CSR_submv(ML_Operator *Amat, double p[], double ap[]);
int CSR_xytsubmatvec(ML_Operator *Amat, double p[], double ap[], int mask);
int CSR_submatvec(ML_Operator *Amat, double p[], double ap[], int mask);
int ML_xytsubmv(ML_Operator *Amat, double p[], double ap[]);
int ML_submv(ML_Operator *Amat, double p[], double ap[]);
int ML_xytsubmatvec(ML_Operator *Amat, double p[], double ap[], int mask);
int ML_submatvec(ML_Operator *Amat, double p[], double ap[], int mask);
int ML_Gen_CoarseSolverXYT( ML *ml, int i);
void ML_XYTfree(void *temp);
void ML_xytsubexchange_bdry(double x[], ML_CommInfoOP *comm_info,
int start_location, int total_send, ML_Comm *comm,
int mask);
void ML_subexchange_bdry(double x[], ML_CommInfoOP *comm_info,
int start_location, int total_send, ML_Comm *comm,
int mask);
extern int ML_xytComm_subGappendInt(ML_Comm *com_ptr, int *vals, int *cur_length,
int total_length,int sub_mask);
extern int ML_Comm_subGappendInt(ML_Comm *com_ptr, int *vals, int *cur_length,
int total_length,int sub_mask);
#ifndef ML_CPP
#ifdef __cplusplus
}
#endif
#endif
#endif
|