|
Thyra Package Browser (Single Doxygen Collection) Version of the Day
|
Classes | |
| class | ArrayView |
| class | Comm |
| class | CopyTpetraMultiVectorViewBack |
| class | DiagonalEpetraLinearOpWithSolveFactory |
| Create a DefaultDiagonalLinearOpWithSolve out of a diagonal Epetra_RowMatrix object. More... | |
| class | EpetraExtAddTransformer |
| Transformer subclass for adding Epetra/Thyra operators using EpetraExt::MatrixMatrix. More... | |
| class | EpetraExtDiagScaledMatProdTransformer |
| Transformer subclass for diagonally scaling and multiplying Epetra/Thyra operators. More... | |
| class | EpetraExtDiagScalingTransformer |
| Transformer subclass for diagonally scaling a Epetra/Thyra operator. More... | |
| class | EpetraLinearOp |
| Concrete LinearOpBase adapter subclass for Epetra_Operator object. More... | |
| class | EpetraLinearOpBase |
| Abstract base class for all LinearOpBase objects that can return an Epetra_Operator view of themselves and details about how to apply the view. More... | |
| class | EpetraModelEvaluator |
| Concrete Adapter subclass that takes an EpetraExt::ModelEvaluator object and wraps it as a Thyra::ModelEvaluator object. More... | |
| class | EpetraOperatorViewExtractorBase |
| Strategy interface for extracting an Epetra_Operator view out of a Thyra::LinearOpBase<double> object. More... | |
| class | EpetraOperatorViewExtractorStd |
| Standard strategy subclass for extracting an Epetra_Operator view out of a Thyra::LinearOpBase<double> object by dynamic casting to the EpetraLinearOpBase interface. More... | |
| class | EpetraOperatorWrapper |
| Implements the Epetra_Operator interface with a Thyra LinearOperator. More... | |
| class | RCP |
| class | TpetraEuclideanScalarProd |
| Extends concrete implementation of a Euclidean scalar product for specifically Tpetra vectors/multivectors. More... | |
| class | TpetraExplicitAdjointModelEvaluator |
| A model evaluator decorator for computing an explicit adjoint. More... | |
| class | TpetraLinearOp |
| Concrete Thyra::LinearOpBase subclass for Tpetra::Operator. More... | |
| class | TpetraMultiVector |
| Concrete implementation of Thyra::MultiVector in terms of Tpetra::MultiVector. More... | |
| class | TpetraOperatorVectorExtraction |
| Traits class that enables the extraction of Tpetra operator/vector objects wrapped in Thyra operator/vector objects. More... | |
| class | TpetraVector |
| Concrete Thyra::SpmdVectorBase using Tpetra::Vector. More... | |
| class | TpetraVectorSpace |
| Concrete implementation of an SPMD vector space for Tpetra. More... | |
Typedefs | |
| typedef Tpetra::Map | TpetraMap_t |
Enumerations | |
| enum | EAdjointEpetraOp { EPETRA_OP_ADJOINT_SUPPORTED , EPETRA_OP_ADJOINT_UNSUPPORTED } |
| Determine if adjoints are supported on Epetra_Opeator or not. More... | |
| enum | EApplyEpetraOpAs { EPETRA_OP_APPLY_APPLY , EPETRA_OP_APPLY_APPLY_INVERSE } |
| Determine how the apply an Epetra_Operator as a linear operator. More... | |
Functions | |
| RCP< const Teuchos::Comm< Ordinal > > | create_Comm (const RCP< const Epetra_Comm > &epetraComm) |
| Given an Epetra_Comm object, return an equivalent Teuchos::Comm object. | |
| RCP< const VectorSpaceBase< double > > | create_VectorSpace (const RCP< const Epetra_Map > &epetra_map) |
| Create an VectorSpaceBase object given an Epetra_Map object. | |
| RCP< const VectorSpaceBase< double > > | create_LocallyReplicatedVectorSpace (const RCP< const VectorSpaceBase< double > > &parentSpace, const int dim) |
| Create a VectorSpaceBase object that creates locally replicated vector objects. | |
| RCP< VectorBase< double > > | create_Vector (const RCP< Epetra_Vector > &epetra_v, const RCP< const VectorSpaceBase< double > > &space=Teuchos::null) |
| Create a non-const VectorBase object from a non-const Epetra_Vector object. | |
| RCP< const VectorBase< double > > | create_Vector (const RCP< const Epetra_Vector > &epetra_v, const RCP< const VectorSpaceBase< double > > &space=Teuchos::null) |
| Create an const VectorBase wrapper object for a const Epetra_Vector object. | |
| RCP< MultiVectorBase< double > > | create_MultiVector (const RCP< Epetra_MultiVector > &epetra_mv, const RCP< const VectorSpaceBase< double > > &range=Teuchos::null, const RCP< const VectorSpaceBase< double > > &domain=Teuchos::null) |
| Create a non-const MultiVectorBase object from a non-const Epetra_MultiVector object. | |
| RCP< const MultiVectorBase< double > > | create_MultiVector (const RCP< const Epetra_MultiVector > &epetra_mv, const RCP< const VectorSpaceBase< double > > &range=Teuchos::null, const RCP< const VectorSpaceBase< double > > &domain=Teuchos::null) |
| Create an const MultiVectorBase wrapper object for a const Epetra_MultiVector object. | |
| RCP< const Epetra_Comm > | get_Epetra_Comm (const Teuchos::Comm< Ordinal > &comm) |
| Get (or create) and Epetra_Comm given a Teuchos::Comm object. | |
| RCP< const Epetra_Map > | get_Epetra_Map (const VectorSpaceBase< double > &vs, const RCP< const Epetra_Comm > &comm) |
| Get (or create) an Epetra_Map object given an VectorSpaceBase object an optionally an extra Epetra_Comm object. | |
| RCP< const Epetra_Map > | get_Epetra_Map (const RCP< const VectorSpaceBase< double > > &vs, const RCP< const Epetra_Comm > &comm=Teuchos::null) |
| RCP< Epetra_Vector > | get_Epetra_Vector (const Epetra_Map &map, const RCP< VectorBase< double > > &v) |
| Get a non-const Epetra_Vector view from a non-const VectorBase object if possible. | |
| RCP< Epetra_Vector > | get_Epetra_Vector (const RCP< VectorBase< double > > &v, const RCP< const Epetra_Map > &map=Teuchos::null) |
| RCP< const Epetra_Vector > | get_Epetra_Vector (const Epetra_Map &map, const RCP< const VectorBase< double > > &v) |
| Get a const Epetra_Vector view from a const VectorBase object if possible. | |
| RCP< const Epetra_Vector > | get_Epetra_Vector (const RCP< const VectorBase< double > > &v, const RCP< const Epetra_Map > &map=Teuchos::null) |
| RCP< Epetra_MultiVector > | get_Epetra_MultiVector (const Epetra_Map &map, const RCP< MultiVectorBase< double > > &mv) |
| Get a non-const Epetra_MultiVector view from a non-const MultiVectorBase object if possible. | |
| RCP< Epetra_MultiVector > | get_Epetra_MultiVector (const RCP< MultiVectorBase< double > > &mv, const RCP< const Epetra_Map > &map=Teuchos::null) |
| RCP< const Epetra_MultiVector > | get_Epetra_MultiVector (const Epetra_Map &map, const RCP< const MultiVectorBase< double > > &mv) |
| Get a const Epetra_MultiVector view from a const MultiVectorBase object if possible. | |
| RCP< const Epetra_MultiVector > | get_Epetra_MultiVector (const RCP< const MultiVectorBase< double > > &mv, const RCP< const Epetra_Map > &map=Teuchos::null) |
| Teuchos::RCP< Epetra_MultiVector > | get_Epetra_MultiVector (const Epetra_Map &map, MultiVectorBase< double > &mv) |
| Get a non-const Epetra_MultiVector view from a non-const MultiVectorBase object if possible where the client must maintain the memory of the input multivector. | |
| Teuchos::RCP< const Epetra_MultiVector > | get_Epetra_MultiVector (const Epetra_Map &map, const MultiVectorBase< double > &mv) |
| Get a const Epetra_MultiVector view from a const MultiVectorBase object if possible where the client must maintain the memory of the input multivector. | |
| const std::string | toString (const EAdjointEpetraOp adjointEpetraOp) |
| const std::string | toString (const EApplyEpetraOpAs applyEpetraOpAs) |
| template<> | |
| Teuchos::RCP< Epetra_Operator > | get_Epetra_Operator (LinearOpBase< double > &op) |
| Full specialization for Scalar=double. | |
| template<> | |
| Teuchos::RCP< const Epetra_Operator > | get_Epetra_Operator (const LinearOpBase< double > &op) |
| Full specialization for Scalar=double. | |
| template<class Scalar> | |
| Teuchos::RCP< Epetra_Operator > | get_Epetra_Operator (LinearOpBase< Scalar > &) |
| Get smart pointer to non-const Epetra_Operator object from reference to a non-const EpetraLinearOp accessed through its LinearOpBase interface. | |
| template<> | |
| Teuchos::RCP< Epetra_Operator > | get_Epetra_Operator (LinearOpBase< double > &op) |
| Full specialization for Scalar=double. | |
| template<class Scalar> | |
| Teuchos::RCP< const Epetra_Operator > | get_Epetra_Operator (const LinearOpBase< Scalar > &) |
| Get smart pointer to const Epetra_Operator object from reference to a const EpetraLinearOp accessed through its LinearOpBase interface. | |
| template<> | |
| Teuchos::RCP< const Epetra_Operator > | get_Epetra_Operator (const LinearOpBase< double > &op) |
| Full specialization for Scalar=double. | |
| TEUCHOS_UNIT_TEST (EpetraOperatorWrapper, basic) | |
| TEUCHOS_UNIT_TEST (EpetraLinearOp, ScaledLinearOpBase) | |
| TEUCHOS_UNIT_TEST (EpetraLinearOp, RowStatLinearOpBase) | |
| RCP< Epetra_CrsMatrix > | getMyEpetraMatrix (int numRows, int numCols, double shift=0.0) |
| TEUCHOS_UNIT_TEST (EpetraLinearOp, Blocked_ScaledLinearOpBase) | |
| TEUCHOS_UNIT_TEST (EpetraLinearOp, Blocked_RowStatLinearOpBase) | |
| TEUCHOS_UNIT_TEST (EpetraLinearOp, Blocked_ScalingWithMultiVectors) | |
| TEUCHOS_UNIT_TEST (EpetraLinearOp, rectangular) | |
| TEUCHOS_UNIT_TEST (EpetraLinearOp, blocked_op) | |
| TEUCHOS_UNIT_TEST (EpetraLinearOpParallel, blocked_op) | |
| EpetraExt::ModelEvaluator::MPDerivative | convert (const ModelEvaluatorBase::MPDerivative &derivative, const RCP< const Epetra_Map > &fnc_map, const RCP< const Epetra_Map > &var_map) |
| template<typename Scalar> | |
| RCP< TpetraExplicitAdjointModelEvaluator< Scalar > > | tpetraExplicitAdjointModelEvaluator (const RCP< const ModelEvaluator< Scalar > > &model) |
| template<typename Scalar> | |
| RCP< TpetraExplicitAdjointModelEvaluator< Scalar > > | tpetraExplicitAdjointModelEvaluator (const RCP< ModelEvaluator< Scalar > > &model) |
| template<class Scalar> | |
| Teuchos::ETransp | convertConjNoTransToTeuchosTransMode () |
| template<class Scalar> | |
| Teuchos::ETransp | convertToTeuchosTransMode (const Thyra::EOpTransp transp) |
| RCP< const Teuchos::Comm< Ordinal > > | convertTpetraToThyraComm (const RCP< const Teuchos::Comm< int > > &tpetraComm) |
| Given an Tpetra Teuchos::Comm<int> object, return an equivalent Teuchos::Comm<Ordinal> object. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const VectorSpaceBase< Scalar > > | createVectorSpace (const RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > &tpetraMap) |
| Create a Thyra::VectorSpaceBase object given a Tpetra::Map. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< VectorBase< Scalar > > | createVector (const RCP< Tpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVector, const RCP< const VectorSpaceBase< Scalar > > space=Teuchos::null) |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const VectorBase< Scalar > > | createConstVector (const RCP< const Tpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVector, const RCP< const VectorSpaceBase< Scalar > > space=Teuchos::null) |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< MultiVectorBase< Scalar > > | createMultiVector (const RCP< Tpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraMultiVector, const RCP< const VectorSpaceBase< Scalar > > rangeSpace=Teuchos::null, const RCP< const VectorSpaceBase< Scalar > > domainSpace=Teuchos::null) |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const MultiVectorBase< Scalar > > | createConstMultiVector (const RCP< const Tpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraMultiVector, const RCP< const VectorSpaceBase< Scalar > > rangeSpace=Teuchos::null, const RCP< const VectorSpaceBase< Scalar > > domainSpace=Teuchos::null) |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< LinearOpBase< Scalar > > | createLinearOp (const RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraOperator, const RCP< const VectorSpaceBase< Scalar > > rangeSpace=Teuchos::null, const RCP< const VectorSpaceBase< Scalar > > domainSpace=Teuchos::null) |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const LinearOpBase< Scalar > > | createConstLinearOp (const RCP< const Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraOperator, const RCP< const VectorSpaceBase< Scalar > > rangeSpace=Teuchos::null, const RCP< const VectorSpaceBase< Scalar > > domainSpace=Teuchos::null) |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| Teuchos::RCP< const TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | getOrCreateTpetraVectorSpace (const RCP< const VectorSpaceBase< Scalar > > space, const RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > &tpetraMap) |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| Teuchos::RCP< const ScalarProdVectorSpaceBase< Scalar > > | getOrCreateLocallyReplicatedTpetraVectorSpace (const RCP< const VectorSpaceBase< Scalar > > space, const RCP< const Teuchos::Comm< int > > &tpetraComm, const int numCols) |
| RCP< const TpetraMap_t > | createTpetraMap (const int localDim) |
| template<class Scalar> | |
| RCP< const VectorSpaceBase< Scalar > > | createTpetraVectorSpace (const int localDim) |
| template<class Scalar> | |
| RCP< Tpetra::Operator< Scalar > > | createTriDiagonalTpetraOperator (const int numLocalRows) |
| TEUCHOS_STATIC_SETUP () | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, convertTpetraToThyraComm, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, createVectorSpace, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, createVector, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, createConstVector, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, createMultiVector, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, createConstMultiVector, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, TeptraVectorSpace, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, vectorSpaceTester, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, vectorStdOpsTester, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, multiVectorStdOpsTester, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, getTpetraMultiVector, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, getConstTpetraMultiVector, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, TpetraLinearOp, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, createLinearOp, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, createConstLinearOp, Scalar) | |
| Teuchos::RCP< Teuchos::Time > | lookupAndAssertTimer (const std::string &label) |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, UseTpetraImplementations, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, TpetraLinearOp_EpetraRowMatrix, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, TpetraLinearOp_RowStatLinearOpBase, Scalar) | |
| TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL (TpetraThyraWrappers, TpetraLinearOp_ScaledLinearOpBase, Scalar) | |
| RCP< EpetraLinearOp > | nonconstEpetraLinearOp () |
| Default nonmember constructor. | |
| RCP< EpetraLinearOp > | partialNonconstEpetraLinearOp (const RCP< const VectorSpaceBase< double > > &range, const RCP< const VectorSpaceBase< double > > &domain, const RCP< Epetra_Operator > &op, EOpTransp opTrans=NOTRANS, EApplyEpetraOpAs applyAs=EPETRA_OP_APPLY_APPLY, EAdjointEpetraOp adjointSupport=EPETRA_OP_ADJOINT_SUPPORTED) |
| Partially initialized EpetraLinearOp. | |
| RCP< EpetraLinearOp > | nonconstEpetraLinearOp (const RCP< Epetra_Operator > &op, EOpTransp opTrans=NOTRANS, EApplyEpetraOpAs applyAs=EPETRA_OP_APPLY_APPLY, EAdjointEpetraOp adjointSupport=EPETRA_OP_ADJOINT_SUPPORTED, const RCP< const VectorSpaceBase< double > > &range=Teuchos::null, const RCP< const VectorSpaceBase< double > > &domain=Teuchos::null) |
| Dynamically allocate an const EpetraLinearOp to wrap a const Epetra_Operator object. | |
| RCP< const EpetraLinearOp > | epetraLinearOp (const RCP< const Epetra_Operator > &op, EOpTransp opTrans=NOTRANS, EApplyEpetraOpAs applyAs=EPETRA_OP_APPLY_APPLY, EAdjointEpetraOp adjointSupport=EPETRA_OP_ADJOINT_SUPPORTED, const RCP< const VectorSpaceBase< double > > &range=Teuchos::null, const RCP< const VectorSpaceBase< double > > &domain=Teuchos::null) |
| Dynamically allocate a nonconst EpetraLinearOp to wrap a const Epetra_Operator object. | |
| RCP< EpetraLinearOp > | nonconstEpetraLinearOp (const RCP< Epetra_Operator > &op, const std::string &label, EOpTransp opTrans=NOTRANS, EApplyEpetraOpAs applyAs=EPETRA_OP_APPLY_APPLY, EAdjointEpetraOp adjointSupport=EPETRA_OP_ADJOINT_SUPPORTED, const RCP< const VectorSpaceBase< double > > &range=Teuchos::null, const RCP< const VectorSpaceBase< double > > &domain=Teuchos::null) |
| Dynamically allocate an const EpetraLinearOp to wrap a const Epetra_Operator object and give it a string label. | |
| RCP< const EpetraLinearOp > | epetraLinearOp (const RCP< const Epetra_Operator > &op, const std::string &label, EOpTransp opTrans=NOTRANS, EApplyEpetraOpAs applyAs=EPETRA_OP_APPLY_APPLY, EAdjointEpetraOp adjointSupport=EPETRA_OP_ADJOINT_SUPPORTED, const RCP< const SpmdVectorSpaceBase< double > > &range=Teuchos::null, const RCP< const SpmdVectorSpaceBase< double > > &domain=Teuchos::null) |
| Dynamically allocate a nonconst EpetraLinearOp to wrap a const Epetra_Operator object. | |
| RCP< const LinearOpBase< double > > | makeEpetraWrapper (const RCP< const LinearOpBase< double > > &thyraOp) |
| Wrap a Thyra operator in the Epetra_Operator interface, and then wrap it again in a Thyra operator interface. | |
| RCP< EpetraModelEvaluator > | epetraModelEvaluator (const RCP< const EpetraExt::ModelEvaluator > &epetraModel, const RCP< LinearOpWithSolveFactoryBase< double > > &W_factory) |
| ModelEvaluatorBase::EDerivativeMultiVectorOrientation | convert (const EpetraExt::ModelEvaluator::EDerivativeMultiVectorOrientation &mvOrientation) |
| EpetraExt::ModelEvaluator::EDerivativeMultiVectorOrientation | convert (const ModelEvaluatorBase::EDerivativeMultiVectorOrientation &mvOrientation) |
| ModelEvaluatorBase::DerivativeProperties | convert (const EpetraExt::ModelEvaluator::DerivativeProperties &derivativeProperties) |
| ModelEvaluatorBase::DerivativeSupport | convert (const EpetraExt::ModelEvaluator::DerivativeSupport &derivativeSupport) |
| EpetraExt::ModelEvaluator::Derivative | convert (const ModelEvaluatorBase::Derivative< double > &derivative, const RCP< const Epetra_Map > &fnc_map, const RCP< const Epetra_Map > &var_map) |
| RCP< EpetraExtAddTransformer > | epetraExtAddTransformer () |
| Nonmember constructor. | |
| RCP< EpetraExtDiagScaledMatProdTransformer > | epetraExtDiagScaledMatProdTransformer () |
| Nonmember constructor. | |
| RCP< EpetraExtDiagScalingTransformer > | epetraExtDiagScalingTransformer () |
| Nonmember constructor. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const TpetraEuclideanScalarProd< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | tpetraEuclideanScalarProd () |
| Nonmember constructor for TpetraEuclideanScalarProd. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< TpetraLinearOp< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | tpetraLinearOp (const RCP< const VectorSpaceBase< Scalar > > &rangeSpace, const RCP< const VectorSpaceBase< Scalar > > &domainSpace, const RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraOperator) |
| Nonmmeber constructor for TpetraLinearOp. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const TpetraLinearOp< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | constTpetraLinearOp (const RCP< const VectorSpaceBase< Scalar > > &rangeSpace, const RCP< const VectorSpaceBase< Scalar > > &domainSpace, const RCP< const Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraOperator) |
| Nonmmeber constructor for TpetraLinearOp. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< TpetraMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | tpetraMultiVector (const RCP< const TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVectorSpace, const RCP< const ScalarProdVectorSpaceBase< Scalar > > &domainSpace, const RCP< Tpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraMultiVector) |
| Nonmember constructor for non-const TpetraMultiVector. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const TpetraMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | constTpetraMultiVector (const RCP< const TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVectorSpace, const RCP< const ScalarProdVectorSpaceBase< Scalar > > &domainSpace, const RCP< const Tpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraMultiVector) |
| Nonmember constructor for const TpetraMultiVector. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< TpetraVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | tpetraVector (const RCP< const TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVectorSpace, const RCP< Tpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVector) |
| Nonmember constructor for TpetraVector. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< const TpetraVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | constTpetraVector (const RCP< const TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVectorSpace, const RCP< const Tpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &tpetraVector) |
| Nonmember constructor for TpetraVector. | |
| template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> | |
| RCP< TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | tpetraVectorSpace (const RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > &tpetraMap) |
| Nonmember constructor that creats a serial vector space. | |
| TEUCHOS_DEPRECATED RCP< T > | rcp (T *p, Dealloc_T dealloc, bool owns_mem) |
| TypeTo | as (const TypeFrom &t) |
| TypeTo | as (const TypeFrom &t) |
| TEUCHOS_DEPRECATED RCP< T > | rcp (T *p, Dealloc_T dealloc, bool owns_mem) |
Variables | |
| const int | g_localDim = 4 |
| bool | showAllTests = false |
| bool | dumpAll = false |
| bool | runLinearOpTester = true |
| typedef Tpetra::Map Thyra::TpetraMap_t |
Definition at line 85 of file TpetraThyraWrappers_UnitTests.cpp.
| Teuchos::RCP< const Epetra_Map > Thyra::get_Epetra_Map | ( | const RCP< const VectorSpaceBase< double > > & | vs, |
| const RCP< const Epetra_Comm > & | comm = Teuchos::null ) |
Definition at line 512 of file Thyra_EpetraThyraWrappers.cpp.
References get_Epetra_Map(), and Teuchos::RCP< class T >::is_null().
| Teuchos::RCP< Epetra_Vector > Thyra::get_Epetra_Vector | ( | const RCP< VectorBase< double > > & | v, |
| const RCP< const Epetra_Map > & | map = Teuchos::null ) |
Definition at line 618 of file Thyra_EpetraThyraWrappers.cpp.
References get_Epetra_Vector(), and Teuchos::RCP< class T >::is_null().
| Teuchos::RCP< const Epetra_Vector > Thyra::get_Epetra_Vector | ( | const RCP< const VectorBase< double > > & | v, |
| const RCP< const Epetra_Map > & | map = Teuchos::null ) |
Definition at line 717 of file Thyra_EpetraThyraWrappers.cpp.
References get_Epetra_Vector(), and Teuchos::RCP< class T >::is_null().
| Teuchos::RCP< Epetra_MultiVector > Thyra::get_Epetra_MultiVector | ( | const RCP< MultiVectorBase< double > > & | mv, |
| const RCP< const Epetra_Map > & | map = Teuchos::null ) |
Definition at line 825 of file Thyra_EpetraThyraWrappers.cpp.
References get_Epetra_MultiVector(), and Teuchos::RCP< class T >::is_null().
| Teuchos::RCP< const Epetra_MultiVector > Thyra::get_Epetra_MultiVector | ( | const RCP< const MultiVectorBase< double > > & | mv, |
| const RCP< const Epetra_Map > & | map = Teuchos::null ) |
Definition at line 930 of file Thyra_EpetraThyraWrappers.cpp.
References get_Epetra_MultiVector(), and Teuchos::RCP< class T >::is_null().
| Teuchos::RCP< Epetra_Operator > Thyra::get_Epetra_Operator | ( | LinearOpBase< double > & | op | ) |
Full specialization for Scalar=double.
Definition at line 50 of file Thyra_get_Epetra_Operator.cpp.
References Teuchos::dyn_cast(), and Thyra::EpetraLinearOp::epetra_op().
Referenced by scaleFirstDiagElement(), Thyra::EpetraExtAddTransformer::transform(), Thyra::EpetraExtDiagScaledMatProdTransformer::transform(), and Thyra::EpetraExtDiagScalingTransformer::transform().
| Teuchos::RCP< const Epetra_Operator > Thyra::get_Epetra_Operator | ( | const LinearOpBase< double > & | op | ) |
Full specialization for Scalar=double.
Definition at line 58 of file Thyra_get_Epetra_Operator.cpp.
References Teuchos::dyn_cast(), and Thyra::EpetraLinearOp::epetra_op().
| Teuchos::RCP< Epetra_Operator > Thyra::get_Epetra_Operator | ( | LinearOpBase< double > & | op | ) |
Full specialization for Scalar=double.
Definition at line 50 of file Thyra_get_Epetra_Operator.cpp.
References Teuchos::dyn_cast(), and Thyra::EpetraLinearOp::epetra_op().
Referenced by scaleFirstDiagElement(), Thyra::EpetraExtAddTransformer::transform(), Thyra::EpetraExtDiagScaledMatProdTransformer::transform(), and Thyra::EpetraExtDiagScalingTransformer::transform().
| Teuchos::RCP< const Epetra_Operator > Thyra::get_Epetra_Operator | ( | const LinearOpBase< double > & | op | ) |
Full specialization for Scalar=double.
Definition at line 58 of file Thyra_get_Epetra_Operator.cpp.
References Teuchos::dyn_cast(), and Thyra::EpetraLinearOp::epetra_op().
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraOperatorWrapper | , |
| basic | ) |
Definition at line 83 of file EpetraOperatorWrapper_UnitTests.cpp.
References as(), Teuchos::RCP< class T >::ptr(), rcp(), and TEUCHOS_UNIT_TEST().
Referenced by TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), and TEUCHOS_UNIT_TEST().
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOp | , |
| ScaledLinearOpBase | ) |
Definition at line 85 of file EpetraLinearOp_UnitTests.cpp.
References as(), g_localDim, Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST(), and Teuchos::updateSuccess().
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOp | , |
| RowStatLinearOpBase | ) |
Definition at line 251 of file EpetraLinearOp_UnitTests.cpp.
References as(), g_localDim, Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST(), and Teuchos::updateSuccess().
| RCP< Epetra_CrsMatrix > Thyra::getMyEpetraMatrix | ( | int | numRows, |
| int | numCols, | ||
| double | shift = 0.0 ) |
Definition at line 307 of file EpetraLinearOp_UnitTests.cpp.
Referenced by TEUCHOS_UNIT_TEST(), and TEUCHOS_UNIT_TEST().
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOp | , |
| Blocked_ScaledLinearOpBase | ) |
Definition at line 335 of file EpetraLinearOp_UnitTests.cpp.
References g_localDim, getMyEpetraMatrix(), Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST(), and Teuchos::updateSuccess().
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOp | , |
| Blocked_RowStatLinearOpBase | ) |
Definition at line 418 of file EpetraLinearOp_UnitTests.cpp.
References as(), g_localDim, Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST(), and Teuchos::updateSuccess().
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOp | , |
| Blocked_ScalingWithMultiVectors | ) |
Definition at line 487 of file EpetraLinearOp_UnitTests.cpp.
References as(), Teuchos::DefaultComm< typename OrdinalType >::getComm(), getMyEpetraMatrix(), Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST(), Teuchos::updateSuccess(), and Teuchos::VERB_EXTREME.
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOp | , |
| rectangular | ) |
Definition at line 606 of file EpetraLinearOp_UnitTests.cpp.
References g_localDim, TEUCHOS_UNIT_TEST(), and Teuchos::updateSuccess().
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOp | , |
| blocked_op | ) |
Definition at line 635 of file EpetraLinearOp_UnitTests.cpp.
References Teuchos::GlobalMPISession::getNProc(), Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST(), Teuchos::VERB_HIGH, and Teuchos::VERB_MEDIUM.
| Thyra::TEUCHOS_UNIT_TEST | ( | EpetraLinearOpParallel | , |
| blocked_op | ) |
Definition at line 62 of file EpetraLinearOpParallel_UnitTests.cpp.
References TEUCHOS_UNIT_TEST(), and Teuchos::VERB_MEDIUM.
| EpetraExt::ModelEvaluator::MPDerivative Thyra::convert | ( | const ModelEvaluatorBase::MPDerivative & | derivative, |
| const RCP< const Epetra_Map > & | fnc_map, | ||
| const RCP< const Epetra_Map > & | var_map ) |
Definition at line 1651 of file Thyra_EpetraModelEvaluator.cpp.
References convert().
Referenced by convert().
| RCP< TpetraExplicitAdjointModelEvaluator< Scalar > > Thyra::tpetraExplicitAdjointModelEvaluator | ( | const RCP< const ModelEvaluator< Scalar > > & | model | ) |
Definition at line 174 of file Thyra_TpetraExplicitAdjointModelEvaluator.hpp.
References Teuchos::rcp().
| RCP< TpetraExplicitAdjointModelEvaluator< Scalar > > Thyra::tpetraExplicitAdjointModelEvaluator | ( | const RCP< ModelEvaluator< Scalar > > & | model | ) |
Definition at line 182 of file Thyra_TpetraExplicitAdjointModelEvaluator.hpp.
References Teuchos::rcp().
|
inline |
Definition at line 105 of file Thyra_TpetraLinearOp_def.hpp.
References Teuchos::ScalarTraits< typename T >::isComplex, Teuchos::TypeNameTraits< typename T >::name(), and Teuchos::NO_TRANS.
Referenced by convertToTeuchosTransMode().
|
inline |
Definition at line 120 of file Thyra_TpetraLinearOp_def.hpp.
References Teuchos::CONJ_TRANS, convertConjNoTransToTeuchosTransMode(), Teuchos::NO_TRANS, and Teuchos::TRANS.
Referenced by Thyra::TpetraLinearOp< Scalar, LocalOrdinal, GlobalOrdinal, Node >::applyImpl().
| Teuchos::RCP< const Teuchos::Comm< Thyra::Ordinal > > Thyra::convertTpetraToThyraComm | ( | const RCP< const Teuchos::Comm< int > > & | tpetraComm | ) |
Given an Tpetra Teuchos::Comm<int> object, return an equivalent Teuchos::Comm<Ordinal> object.
Will throw if conversion is not successful.
Definition at line 55 of file Thyra_TpetraThyraWrappers.cpp.
Referenced by Thyra::TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node >::initialize(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| RCP< const VectorSpaceBase< Scalar > > Thyra::createVectorSpace | ( | const RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > & | tpetraMap | ) |
Create a Thyra::VectorSpaceBase object given a Tpetra::Map.
Referenced by createTpetraVectorSpace(), Simple2DTpetraModelEvaluator< Scalar >::Simple2DTpetraModelEvaluator(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| RCP< const VectorBase< Scalar > > Thyra::createConstVector | ( | const RCP< const Tpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | tpetraVector, |
| const RCP< const VectorSpaceBase< Scalar > > | space = Teuchos::null ) |
Referenced by TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| RCP< MultiVectorBase< Scalar > > Thyra::createMultiVector | ( | const RCP< Tpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | tpetraMultiVector, |
| const RCP< const VectorSpaceBase< Scalar > > | rangeSpace = Teuchos::null, | ||
| const RCP< const VectorSpaceBase< Scalar > > | domainSpace = Teuchos::null ) |
Referenced by TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| RCP< const MultiVectorBase< Scalar > > Thyra::createConstMultiVector | ( | const RCP< const Tpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | tpetraMultiVector, |
| const RCP< const VectorSpaceBase< Scalar > > | rangeSpace = Teuchos::null, | ||
| const RCP< const VectorSpaceBase< Scalar > > | domainSpace = Teuchos::null ) |
Referenced by TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| RCP< LinearOpBase< Scalar > > Thyra::createLinearOp | ( | const RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | tpetraOperator, |
| const RCP< const VectorSpaceBase< Scalar > > | rangeSpace = Teuchos::null, | ||
| const RCP< const VectorSpaceBase< Scalar > > | domainSpace = Teuchos::null ) |
| RCP< const LinearOpBase< Scalar > > Thyra::createConstLinearOp | ( | const RCP< const Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | tpetraOperator, |
| const RCP< const VectorSpaceBase< Scalar > > | rangeSpace = Teuchos::null, | ||
| const RCP< const VectorSpaceBase< Scalar > > | domainSpace = Teuchos::null ) |
Referenced by TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Teuchos::RCP< const TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Thyra::getOrCreateTpetraVectorSpace | ( | const RCP< const VectorSpaceBase< Scalar > > | space, |
| const RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > & | tpetraMap ) |
Definition at line 58 of file Thyra_TpetraThyraWrappers_def.hpp.
| Teuchos::RCP< const ScalarProdVectorSpaceBase< Scalar > > Thyra::getOrCreateLocallyReplicatedTpetraVectorSpace | ( | const RCP< const VectorSpaceBase< Scalar > > | space, |
| const RCP< const Teuchos::Comm< int > > & | tpetraComm, | ||
| const int | numCols ) |
Definition at line 78 of file Thyra_TpetraThyraWrappers_def.hpp.
| RCP< const TpetraMap_t > Thyra::createTpetraMap | ( | const int | localDim | ) |
Definition at line 89 of file TpetraThyraWrappers_UnitTests.cpp.
References Teuchos::DefaultComm< typename OrdinalType >::getComm(), and Teuchos::rcp().
Referenced by createTpetraVectorSpace(), createTriDiagonalTpetraOperator(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| RCP< const VectorSpaceBase< Scalar > > Thyra::createTpetraVectorSpace | ( | const int | localDim | ) |
Definition at line 102 of file TpetraThyraWrappers_UnitTests.cpp.
References createTpetraMap(), createVectorSpace(), and g_localDim.
Referenced by TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| RCP< Tpetra::Operator< Scalar > > Thyra::createTriDiagonalTpetraOperator | ( | const int | numLocalRows | ) |
Definition at line 110 of file TpetraThyraWrappers_UnitTests.cpp.
References createTpetraMap(), and Teuchos::rcp().
Referenced by TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_STATIC_SETUP | ( | ) |
Definition at line 190 of file TpetraThyraWrappers_UnitTests.cpp.
References dumpAll, Teuchos::UnitTestRepository::getCLP(), runLinearOpTester, Teuchos::CommandLineProcessor::setOption(), and showAllTests.
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| convertTpetraToThyraComm | , | ||
| Scalar | ) |
Definition at line 210 of file TpetraThyraWrappers_UnitTests.cpp.
References convertTpetraToThyraComm(), Teuchos::DefaultComm< typename OrdinalType >::getComm(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
Referenced by TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| createVectorSpace | , | ||
| Scalar | ) |
Definition at line 223 of file TpetraThyraWrappers_UnitTests.cpp.
References as(), createTpetraMap(), createVectorSpace(), g_localDim, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| createVector | , | ||
| Scalar | ) |
Definition at line 246 of file TpetraThyraWrappers_UnitTests.cpp.
References createTpetraMap(), createVector(), createVectorSpace(), g_localDim, rcp(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| createConstVector | , | ||
| Scalar | ) |
Definition at line 283 of file TpetraThyraWrappers_UnitTests.cpp.
References createConstVector(), createTpetraMap(), createVectorSpace(), g_localDim, rcp(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| createMultiVector | , | ||
| Scalar | ) |
Definition at line 322 of file TpetraThyraWrappers_UnitTests.cpp.
References createMultiVector(), createTpetraMap(), createVectorSpace(), g_localDim, rcp(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| createConstMultiVector | , | ||
| Scalar | ) |
Definition at line 374 of file TpetraThyraWrappers_UnitTests.cpp.
References createConstMultiVector(), createTpetraMap(), createVectorSpace(), g_localDim, rcp(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| TeptraVectorSpace | , | ||
| Scalar | ) |
Definition at line 427 of file TpetraThyraWrappers_UnitTests.cpp.
References createTpetraMap(), createVectorSpace(), g_localDim, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| vectorSpaceTester | , | ||
| Scalar | ) |
Definition at line 442 of file TpetraThyraWrappers_UnitTests.cpp.
References createTpetraVectorSpace(), dumpAll, g_localDim, showAllTests, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| vectorStdOpsTester | , | ||
| Scalar | ) |
Definition at line 459 of file TpetraThyraWrappers_UnitTests.cpp.
References createTpetraMap(), createVectorSpace(), g_localDim, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| multiVectorStdOpsTester | , | ||
| Scalar | ) |
Definition at line 476 of file TpetraThyraWrappers_UnitTests.cpp.
References createTpetraMap(), createVectorSpace(), g_localDim, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| getTpetraMultiVector | , | ||
| Scalar | ) |
Definition at line 492 of file TpetraThyraWrappers_UnitTests.cpp.
References as(), createTpetraVectorSpace(), g_localDim, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| getConstTpetraMultiVector | , | ||
| Scalar | ) |
Definition at line 529 of file TpetraThyraWrappers_UnitTests.cpp.
References as(), createTpetraVectorSpace(), g_localDim, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| TpetraLinearOp | , | ||
| Scalar | ) |
Definition at line 566 of file TpetraThyraWrappers_UnitTests.cpp.
References Teuchos::as(), as(), createTriDiagonalTpetraOperator(), createVectorSpace(), dumpAll, g_localDim, Teuchos::RCP< class T >::ptr(), runLinearOpTester, showAllTests, TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and Teuchos::VERB_HIGH.
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| createLinearOp | , | ||
| Scalar | ) |
Definition at line 610 of file TpetraThyraWrappers_UnitTests.cpp.
References createLinearOp(), createTriDiagonalTpetraOperator(), createVectorSpace(), g_localDim, TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and Teuchos::VERB_HIGH.
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| createConstLinearOp | , | ||
| Scalar | ) |
Definition at line 655 of file TpetraThyraWrappers_UnitTests.cpp.
References createConstLinearOp(), createTriDiagonalTpetraOperator(), createVectorSpace(), g_localDim, TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and Teuchos::VERB_HIGH.
| Teuchos::RCP< Teuchos::Time > Thyra::lookupAndAssertTimer | ( | const std::string & | label | ) |
Definition at line 701 of file TpetraThyraWrappers_UnitTests.cpp.
References Teuchos::PerformanceMonitorBase< Time >::lookupCounter().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| UseTpetraImplementations | , | ||
| Scalar | ) |
Definition at line 724 of file TpetraThyraWrappers_UnitTests.cpp.
References CHECK_TPETRA_FUNC_CALL_INCREMENT, createTpetraVectorSpace(), g_localDim, and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| TpetraLinearOp_EpetraRowMatrix | , | ||
| Scalar | ) |
Definition at line 899 of file TpetraThyraWrappers_UnitTests.cpp.
References TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| TpetraLinearOp_RowStatLinearOpBase | , | ||
| Scalar | ) |
Definition at line 904 of file TpetraThyraWrappers_UnitTests.cpp.
References Teuchos::as(), createTriDiagonalTpetraOperator(), createVectorSpace(), Teuchos::ScalarTraits< typename T >::eps(), g_localDim, Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and Teuchos::VERB_HIGH.
| Thyra::TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL | ( | TpetraThyraWrappers | , |
| TpetraLinearOp_ScaledLinearOpBase | , | ||
| Scalar | ) |
Definition at line 956 of file TpetraThyraWrappers_UnitTests.cpp.
References as(), createTriDiagonalTpetraOperator(), createVectorSpace(), Teuchos::ScalarTraits< typename T >::eps(), g_localDim, Teuchos::RCP< class T >::ptr(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and Teuchos::VERB_HIGH.
| TEUCHOS_DEPRECATED RCP< T > Teuchos::rcp | ( | T * | p, |
| Dealloc_T | dealloc, | ||
| bool | owns_mem ) |
Referenced by Thyra::EpetraModelEvaluator::convertInArgsFromThyraToEpetra(), create_Comm(), get_Epetra_Comm(), getMyEpetraMatrix(), Thyra::EpetraModelEvaluator::getValidParameters(), Thyra::EpetraModelEvaluator::postEvalScalingSetup(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), Thyra::EpetraExtAddTransformer::transform(), and Thyra::EpetraExtDiagScaledMatProdTransformer::transform().
| TypeTo Teuchos::as | ( | const TypeFrom & | t | ) |
Referenced by create_VectorSpace(), Thyra::EpetraLinearOp::describe(), getMyEpetraMatrix(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| TypeTo Teuchos::as | ( | const TypeFrom & | t | ) |
| TEUCHOS_DEPRECATED RCP< T > Teuchos::rcp | ( | T * | p, |
| Dealloc_T | dealloc, | ||
| bool | owns_mem ) |
| const int Thyra::g_localDim = 4 |
Definition at line 82 of file TpetraThyraWrappers_UnitTests.cpp.
Referenced by createTpetraVectorSpace(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| bool Thyra::showAllTests = false |
Definition at line 185 of file TpetraThyraWrappers_UnitTests.cpp.
Referenced by TEUCHOS_STATIC_SETUP(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| bool Thyra::dumpAll = false |
Definition at line 186 of file TpetraThyraWrappers_UnitTests.cpp.
Referenced by TEUCHOS_STATIC_SETUP(), TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().
| bool Thyra::runLinearOpTester = true |
Definition at line 187 of file TpetraThyraWrappers_UnitTests.cpp.
Referenced by TEUCHOS_STATIC_SETUP(), and TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL().