~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/rythmos/src/Rythmos_StepperAsModelEvaluator.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:
32
32
 
33
33
 
34
34
#include "Thyra_ResponseOnlyModelEvaluatorBase.hpp"
 
35
#include "Thyra_ModelEvaluatorDelegatorBase.hpp"
35
36
 
36
37
#include "Rythmos_StepperBase.hpp"
37
38
#include "Rythmos_IntegratorBase.hpp"
166
167
  )
167
168
{
168
169
 
169
 
#ifdef TEUCHOS_DEBUG
 
170
#ifdef RYTHMOS_DEBUG
170
171
  TEST_FOR_EXCEPT(is_null(stepper));
171
172
  TEST_FOR_EXCEPT(is_null(stepper->getModel()));
172
173
  TEST_FOR_EXCEPT(is_null(integrator));
213
214
RCP<const Thyra::VectorSpaceBase<Scalar> >
214
215
StepperAsModelEvaluator<Scalar>::get_p_space(int l) const
215
216
{
216
 
#ifdef TEUCHOS_DEBUG
 
217
#ifdef RYTHMOS_DEBUG
217
218
  TEUCHOS_ASSERT_IN_RANGE_UPPER_EXCLUSIVE( l, 0, Np_ );
218
219
#endif
219
220
  return p_space_[l];
224
225
RCP<const Thyra::VectorSpaceBase<Scalar> >
225
226
StepperAsModelEvaluator<Scalar>::get_g_space(int j) const
226
227
{
227
 
#ifdef TEUCHOS_DEBUG
 
228
#ifdef RYTHMOS_DEBUG
228
229
  TEUCHOS_ASSERT_IN_RANGE_UPPER_EXCLUSIVE( j, 0, Ng_ );
229
230
#endif
230
231
  return g_space_[j];
293
294
    is_null(g_out) && "You must ask for g(0) when you call this function!"
294
295
    );
295
296
 
296
 
#ifdef TEUCHOS_DEBUG
 
297
#ifdef RYTHMOS_DEBUG
297
298
 
298
299
  THYRA_ASSERT_VEC_SPACES(
299
300
    "StepperAsModelEvaluator<Scalar>::evalModel(...)",