/usr/include/trilinos/ml_setup.h is in libtrilinos-ml-dev 12.12.1-5.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | /* ******************************************************************** */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
#ifndef __MLSETUP__
#define __MLSETUP__
/* ******************************************************************** */
/* variable to pass to the local compute_basis_coefficients function */
/* ******************************************************************** */
ML_GridFunc *gridfcns_basis=NULL;
/* ******************************************************************** */
/* definition of local subroutines */
/* ******************************************************************** */
#ifdef __cplusplus
extern "C" {
#endif
#include "ml_common.h"
void ML_compose_global_grid( void *c_grid,
ML_GridFunc *cgrid_fcns,
ML_GridAGX **g_c_grid,
ML_Comm *comm);
void ML_construct_RP0( void *c_grid,
ML_GridFunc *cgrid_fcns,
void *f_grid,
ML_GridFunc *fgrid_fcns,
ML_GridAGX *g_c_grid,
ML_OperatorAGX **xsfer_op,
ML_Comm *comm);
int ML_remote_grid_candidates( void *f_grid,
ML_GridFunc *fgrid_fcns,
ML_GridFunc *cgrid_fcns,
ML_GridAGX *g_c_grid,
ML_IntList *cand_list,
ML_OperatorAGX *xsfer_op,
ML_Comm *comm);
void ML_exchange_candidates( ML_IntList *cand_list,
void *f_grid,
ML_GridFunc *fgrid_fcns,
ML_GridAGX *g_c_grid,
ML_CommInfoAGX *combuf,
ML_Comm *comm);
void ML_get_basis_functions_coef(ML_CommInfoAGX *combuf,
void *c_grid,
ML_GridFunc *cgrid_fcns,
ML_OperatorAGX *xsfer_op);
void ML_exchange_coefficients( void *c_grid,
ML_GridFunc *cgrid_fcns,
ML_CommInfoAGX *combuf,
ML_OperatorAGX *xsfer_op,
ML_Comm *comm);
void ML_construct_RP1( void *fgrid,
ML_GridFunc *fgrid_fcns,
void *cgrid,
ML_GridFunc *cgrid_fcns,
ML_GridAGX *g_c_grid,
ML_CommInfoAGX *combuf,
ML_OperatorAGX *xsfer_op,
ML_Comm *comm);
#ifdef __cplusplus
}
#endif
#endif
|