/usr/include/trilinos/MLAPI_SAMIS.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 | #ifndef MLAPI_SAMIS_H
#define MLAPI_SAMIS_H
/*!
\file MLAPI_SAMIS
\brief Input matrix and kernel vectors from SAMIS format.
\author Marzio Sala, SNL 9214 and Marian Brezina, UC Boulder.
\date Last updated on Mar-05.
*/
/* ******************************************************************** */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
#include "ml_common.h"
#include "ml_include.h"
#include <iostream>
namespace MLAPI {
class Operator;
// ======================================================================
//! Reads symmetric matrix from SAMIS binary format.
// ======================================================================
void ReadSAMISMatrix(const char *filen, Operator& A, int& NumPDEEqns);
// ======================================================================
//! Reads null space vectors from SAMIS binary format.
// ======================================================================
void ReadSAMISKernel(const char *myKerFileName, MultiVector& A,
const int limKer=-1 /* -in- limit num of kernels used */);
} // namespace MLAPI
#endif // MLAPI_SAMIS_H
|