/usr/include/trilinos/MLAPI_BaseLinearCombination.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 | #ifndef ML_BASELINEARCOMBINATION_H
#define ML_BASELINEARCOMBINATION_H
/*!
\file MLAPI_BaseLinearCombination.h
\brief Base class for all operator overloading related operations.
\author Marzio Sala, SNL 9214.
\date Last updated on Mar-06.
*/
/* ******************************************************************** */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
namespace MLAPI {
class Space;
class BaseOperator;
class MultiVector;
class BaseLinearCombination
{
public:
virtual ~BaseLinearCombination() {};
//! Returns the vector space of the underlying object.
virtual const Space GetVectorSpace() const = 0;
// Computes v += <operations>
virtual void Update(MultiVector& v) const = 0;
// Computes v = <operations>
virtual void Set(MultiVector& v) const = 0;
};
} // namespace MLAPI
#endif // ifdef ML_BASELINEARCOMBINATION_H
|