/usr/include/trilinos/AbstractLinAlgPack_ThyraAccessors.hpp is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.
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 | // ////////////////////////////////////////////////////
// AbstractLinAlgPack_ThyraAccessors.hpp
#ifndef ALAP_THYRA_ACCESSORS_HPP
#define ALAP_THYRA_ACCESSORS_HPP
#include "AbstractLinAlgPack_VectorSpaceThyra.hpp"
namespace AbstractLinAlgPack {
/** \brief . */
void get_thyra_vector(
const VectorSpaceThyra &thyra_vec_spc
,const Vector &vec
,Teuchos::RCP<const Thyra::VectorBase<value_type> > *thyra_vec
);
/** \brief . */
void free_thyra_vector(
const VectorSpaceThyra &thyra_vec_spc
,const Vector &vec
,Teuchos::RCP<const Thyra::VectorBase<value_type> > *thyra_vec
);
/** \brief . */
void get_thyra_vector(
const VectorSpaceThyra &thyra_vec_spc
,VectorMutable *vec
,Teuchos::RCP<Thyra::VectorBase<value_type> > *thyra_vec
);
/** \brief . */
void commit_thyra_vector(
const VectorSpaceThyra &thyra_vec_spc
,VectorMutable *vec
,Teuchos::RCP<Thyra::VectorBase<value_type> > *thyra_vec
);
}
#endif // ALAP_THYRA_ACCESSORS_HPP
|