~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/thyra/adapters/epetra/src/Thyra_get_Epetra_Operator.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
#include "Thyra_EpetraTypes.hpp"
33
33
 
 
34
 
34
35
namespace Thyra {
35
36
 
 
37
 
36
38
/** \defgroup Epetra_Thyra_Op_Vec_get_Epetra_Operator_grp Epetra_Operator extraction utility functions
37
39
 
38
40
\ingroup Epetra_Thyra_Op_Vec_adapters_grp
41
43
 
42
44
*/
43
45
 
 
46
 
44
47
/** \brief Get smart pointer to non-<tt>const</tt>
45
48
 * <tt>Epetra_Operator</tt> object from reference to a
46
49
 * non-<tt>const</tt> <tt>EpetraLinearOp</tt> accessed through its
69
72
Teuchos::RCP<Epetra_Operator>
70
73
get_Epetra_Operator( LinearOpBase<double> &op );
71
74
 
 
75
 
72
76
/** \brief Get smart pointer to <tt>const</tt>
73
77
 * <tt>Epetra_Operator</tt> object from reference to a <tt>const</tt>
74
78
 * <tt>EpetraLinearOp</tt> accessed through its <tt>LinearOpBase</tt>
97
101
Teuchos::RCP<const Epetra_Operator>
98
102
get_Epetra_Operator( const LinearOpBase<double> &op );
99
103
 
 
104
 
100
105
} // namespace Thyra
101
106
 
 
107
 
102
108
#endif // THYRA_GET_EPETRA_OPERATOR_HPP