VectorHelperFunctions.hpp File Reference

#include <cassert>
#include <vector>
#include <nvector/nvector_serial.h>
Include dependency graph for VectorHelperFunctions.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

template<typename VECTOR >
double GetVectorComponent (const VECTOR &rVec, unsigned index)
template<typename VECTOR >
void SetVectorComponent (VECTOR &rVec, unsigned index, double value)
template<typename VECTOR >
unsigned GetVectorSize (const VECTOR &rVec)
template<typename VECTOR >
void InitialiseEmptyVector (VECTOR &rVec)
template<typename VECTOR >
void CreateVectorIfEmpty (VECTOR &rVec, unsigned size)
template<typename VECTOR >
VECTOR CreateEmptyVector ()
template<typename VECTOR >
bool IsEmptyVector (VECTOR &rVec)
template<typename VECTOR >
void DeleteVector (VECTOR &rVec)
template<typename VECTOR >
VECTOR CopyVector (VECTOR &rVec)
template<typename VECTOR >
void CopyToStdVector (const VECTOR &rSrc, std::vector< double > &rDest)
template<typename VECTOR >
void CopyFromStdVector (const std::vector< double > &rSrc, VECTOR &rDest)
template<>
double GetVectorComponent (const std::vector< double > &rVec, unsigned index)
template<>
void SetVectorComponent (std::vector< double > &rVec, unsigned index, double value)
template<>
unsigned GetVectorSize (const std::vector< double > &rVec)
template<>
void InitialiseEmptyVector (std::vector< double > &rVec)
template<>
void CreateVectorIfEmpty (std::vector< double > &rVec, unsigned size)
template<>
std::vector< doubleCreateEmptyVector ()
template<>
bool IsEmptyVector (std::vector< double > &rVec)
template<>
void DeleteVector (std::vector< double > &rVec)
template<>
std::vector< doubleCopyVector (std::vector< double > &rVec)
template<>
void CopyToStdVector (const std::vector< double > &rSrc, std::vector< double > &rDest)
template<>
void CopyFromStdVector (const std::vector< double > &rSrc, std::vector< double > &rDest)
template<>
double GetVectorComponent (const N_Vector &rVec, unsigned index)
template<>
void SetVectorComponent (N_Vector &rVec, unsigned index, double value)
template<>
unsigned GetVectorSize (const N_Vector &rVec)
template<>
void InitialiseEmptyVector (N_Vector &rVec)
template<>
void CreateVectorIfEmpty (N_Vector &rVec, unsigned size)
template<>
bool IsEmptyVector (N_Vector &rVec)
template<>
void DeleteVector (N_Vector &rVec)
template<>
N_Vector CopyVector (N_Vector &rVec)
template<>
void CopyToStdVector (const N_Vector &rSrc, std::vector< double > &rDest)
template<>
void CopyFromStdVector (const std::vector< double > &rSrc, N_Vector &rDest)
std::vector< doubleMakeStdVec (N_Vector v)

Detailed Description

A selection of helper functions to be able to access std::vector<double> and CVODE's N_Vector types using the same interface. These are used by AbstractParameterisedSystem and some tests.

Definition in file VectorHelperFunctions.hpp.


Function Documentation

template<>
void CopyFromStdVector ( const std::vector< double > &  rSrc,
N_Vector rDest 
) [inline]

A helper function to copy a std::vector<double> into an N_Vector.

Parameters:
rSrc source vector
rDest destination vector; must exist and be the correct size

Definition at line 437 of file VectorHelperFunctions.hpp.

template<>
void CopyFromStdVector ( const std::vector< double > &  rSrc,
std::vector< double > &  rDest 
) [inline]

Specialisation for std::vector<double>.

Parameters:
rSrc 
rDest 

Definition at line 286 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
void CopyFromStdVector ( const std::vector< double > &  rSrc,
VECTOR &  rDest 
) [inline]

A helper function to copy a std::vector<double> into a VECTOR.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rSrc source vector
rDest destination vector; must exist and be the correct size

Referenced by AbstractParameterisedSystem< VECTOR >::GetInitialConditions(), and OdeSolution::rGetDerivedQuantities().

template<>
void CopyToStdVector ( const N_Vector rSrc,
std::vector< double > &  rDest 
) [inline]

A helper function to copy an N_Vector into a std::vector<double>.

Parameters:
rSrc source vector
rDest destination vector; will be resized and filled

Definition at line 415 of file VectorHelperFunctions.hpp.

template<>
void CopyToStdVector ( const std::vector< double > &  rSrc,
std::vector< double > &  rDest 
) [inline]

Specialisation for std::vector<double>.

Parameters:
rSrc 
rDest 

Definition at line 275 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
void CopyToStdVector ( const VECTOR &  rSrc,
std::vector< double > &  rDest 
) [inline]

A helper function to copy a VECTOR into a std::vector<double>.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rSrc source vector
rDest destination vector; will be resized and filled

Referenced by MakeStdVec(), OdeSolution::rGetDerivedQuantities(), and AbstractParameterisedSystem< VECTOR >::SetDefaultInitialConditions().

template<>
N_Vector CopyVector ( N_Vector rVec  )  [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 

Definition at line 393 of file VectorHelperFunctions.hpp.

template<>
std::vector<double> CopyVector ( std::vector< double > &  rVec  )  [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 

Definition at line 264 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
VECTOR CopyVector ( VECTOR &  rVec  )  [inline]

Helper function to create a fresh copy of a vector.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rVec the vector to copy

Referenced by AbstractParameterisedSystem< VECTOR >::GetStateVariables().

template<>
N_Vector CreateEmptyVector (  )  [inline]

Specialisation for std::vector<double>.

Specialisation for CVODE's N_Vector type.

Definition at line 359 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
VECTOR CreateEmptyVector (  )  [inline]

Helper function to create a new empty/unset vector, useful for defining a default parameter value.

Returns:
a new vector

Specialisation for std::vector<double>.

Specialisation for CVODE's N_Vector type.

Definition at line 359 of file VectorHelperFunctions.hpp.

template<>
void CreateVectorIfEmpty ( N_Vector rVec,
unsigned  size 
) [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 
size 

Definition at line 347 of file VectorHelperFunctions.hpp.

template<>
void CreateVectorIfEmpty ( std::vector< double > &  rVec,
unsigned  size 
) [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 
size 

Definition at line 223 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
void CreateVectorIfEmpty ( VECTOR &  rVec,
unsigned  size 
) [inline]

If the given vector is empty, set it to have a particular size, allocating memory if necessary. It is a no-op if the vector is non-empty.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rVec the empty vector
size the size to create it as

Referenced by AbstractParameterisedSystem< VECTOR >::GetInitialConditions(), AbstractCvodeSystem::RecordStoppingPoint(), and AbstractParameterisedSystem< VECTOR >::SetStateVariables().

template<>
void DeleteVector ( N_Vector rVec  )  [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 

Definition at line 379 of file VectorHelperFunctions.hpp.

template<>
void DeleteVector ( std::vector< double > &  rVec  )  [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 

Definition at line 255 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
void DeleteVector ( VECTOR &  rVec  )  [inline]

Helper function to delete a vector.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rVec the vector

Referenced by AbstractParameterisedSystem< VECTOR >::GetAnyVariable(), AbstractCvodeSystem::Init(), AbstractCvodeSystem::ResetSolver(), AbstractParameterisedSystem< VECTOR >::ResetToInitialConditions(), OdeSolution::rGetDerivedQuantities(), and AbstractCvodeSystem::~AbstractCvodeSystem().

template<>
double GetVectorComponent ( const N_Vector rVec,
unsigned  index 
) [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 
index 

Definition at line 301 of file VectorHelperFunctions.hpp.

template<>
double GetVectorComponent ( const std::vector< double > &  rVec,
unsigned  index 
) [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 
index 

Definition at line 179 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
double GetVectorComponent ( const VECTOR &  rVec,
unsigned  index 
) [inline]

Helper function to get a vector component.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rVec the vector to access
index the index of the component to get

Referenced by AbstractParameterisedSystem< VECTOR >::GetAnyVariable(), AbstractParameterisedSystem< VECTOR >::GetParameter(), AbstractParameterisedSystem< VECTOR >::GetStateMessage(), AbstractParameterisedSystem< VECTOR >::GetStateVariable(), AbstractCvodeSystem::RecordStoppingPoint(), AbstractParameterisedSystem< VECTOR >::SetStateVariables(), and AbstractCvodeSystem::SetupCvode().

template<>
unsigned GetVectorSize ( const N_Vector rVec  )  [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 

Definition at line 325 of file VectorHelperFunctions.hpp.

template<>
unsigned GetVectorSize ( const std::vector< double > &  rVec  )  [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 

Definition at line 203 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
unsigned GetVectorSize ( const VECTOR &  rVec  )  [inline]
template<>
void InitialiseEmptyVector ( N_Vector rVec  )  [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 

Definition at line 336 of file VectorHelperFunctions.hpp.

template<>
void InitialiseEmptyVector ( std::vector< double > &  rVec  )  [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 

Definition at line 213 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
void InitialiseEmptyVector ( VECTOR &  rVec  )  [inline]

Helper function to initialise a vector to be empty/unset.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rVec the vector

Referenced by AbstractParameterisedSystem< VECTOR >::AbstractParameterisedSystem(), and AbstractParameterisedSystem< VECTOR >::GetInitialConditions().

template<>
bool IsEmptyVector ( N_Vector rVec  )  [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 

Definition at line 369 of file VectorHelperFunctions.hpp.

template<>
bool IsEmptyVector ( std::vector< double > &  rVec  )  [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 

Definition at line 245 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
bool IsEmptyVector ( VECTOR &  rVec  )  [inline]

Helper function to test whether a vector is empty/unset.

Parameters:
rVec the vector
std::vector<double> MakeStdVec ( N_Vector  v  )  [inline]

Make a standard vector from an N_Vector

Parameters:
v A CVODE N_Vector to copy the entries from
Returns:
a std::vector of the entries of the N_Vector.

Definition at line 460 of file VectorHelperFunctions.hpp.

References CopyToStdVector().

Referenced by AbstractCvodeSystem::Solve().

template<>
void SetVectorComponent ( N_Vector rVec,
unsigned  index,
double  value 
) [inline]

Specialisation for CVODE's N_Vector type.

Parameters:
rVec 
index 
value 

Definition at line 314 of file VectorHelperFunctions.hpp.

template<>
void SetVectorComponent ( std::vector< double > &  rVec,
unsigned  index,
double  value 
) [inline]

Specialisation for std::vector<double>.

Parameters:
rVec 
index 
value 

Definition at line 192 of file VectorHelperFunctions.hpp.

template<typename VECTOR >
void SetVectorComponent ( VECTOR &  rVec,
unsigned  index,
double  value 
) [inline]

Helper function to set a vector component.

This isn't a member so that we can specialise it without having to specialise the whole class.

Parameters:
rVec the vector to modify
index the index of the component to set
value the new value

Referenced by AbstractCvodeSystem::RecordStoppingPoint(), AbstractParameterisedSystem< VECTOR >::SetAnyVariable(), AbstractParameterisedSystem< VECTOR >::SetParameter(), AbstractParameterisedSystem< VECTOR >::SetStateVariable(), and AbstractParameterisedSystem< VECTOR >::SetStateVariables().

Generated on Thu Dec 22 13:00:19 2011 for Chaste by  doxygen 1.6.3