~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/rythmos/src/Rythmos_StateAndForwardSensitivityModelEvaluator.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:
30
30
#define RYTHMOS_STATE_AND_FORWARD_SENSITIVITY_MODEL_EVALUATOR_HPP
31
31
 
32
32
 
33
 
#include "Rythmos_ForwardSensitivityModelEvaluator.hpp"
 
33
#include "Rythmos_ForwardSensitivityModelEvaluatorBase.hpp"
34
34
#include "Thyra_ModelEvaluator.hpp" // Interface
35
35
#include "Thyra_StateFuncModelEvaluatorBase.hpp" // Implementation
36
36
#include "Thyra_DefaultProductVectorSpace.hpp"
200
200
   *           will be extracted.
201
201
   */
202
202
  void initializeStructure(
203
 
    const Teuchos::RCP<const ForwardSensitivityModelEvaluator<Scalar> > &sensModel
 
203
    const Teuchos::RCP<const ForwardSensitivityModelEvaluatorBase<Scalar> > &sensModel
204
204
    );
205
205
 
206
206
  // 2007/05/30: rabartl: ToDo: Add function to set the nominal values etc.
260
260
  // /////////////////////////
261
261
  // Private data members
262
262
 
263
 
  Teuchos::RCP<const ForwardSensitivityModelEvaluator<Scalar> > sensModel_;
 
263
  Teuchos::RCP<const ForwardSensitivityModelEvaluatorBase<Scalar> > sensModel_;
264
264
 
265
265
  int Np_;
266
266
  Teuchos::RCP<const Thyra::DefaultProductVectorSpace<Scalar> > x_bar_space_;
284
284
 
285
285
template<class Scalar>
286
286
void StateAndForwardSensitivityModelEvaluator<Scalar>::initializeStructure(
287
 
  const Teuchos::RCP<const ForwardSensitivityModelEvaluator<Scalar> > &sensModel
 
287
  const Teuchos::RCP<const ForwardSensitivityModelEvaluatorBase<Scalar> > &sensModel
288
288
  )
289
289
{
290
290