MOOSE - Multiscale Object Oriented Simulation Environment
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
MarkovRateTable.h File Reference
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  MarkovRateTable
 

Functions

template<class T >
vector< vector< T > > resize (vector< vector< T > >table, unsigned int n, T init)
 

Function Documentation

template<class T >
vector< vector< T > > resize ( vector< vector< T > >  table,
unsigned int  n,
init 
)

Definition at line 38 of file MarkovRateTable.h.

Referenced by MarkovGslSolver::init(), MarkovSolverBase::init(), PostMaster::setBufferSize(), OneToOneMsg::targets(), and testSparseMatrix2().

39 {
40  table.resize( n );
41 
42  for ( unsigned int i = 0; i < n; ++i )
43  table[i].resize( n, init );
44 
45  return table;
46 }
Id init(int argc, char **argv, bool &doUnitTests, bool &doRegressionTests, unsigned int &benchmark)
Definition: main.cpp:150
vector< vector< T > > resize(vector< vector< T > >table, unsigned int n, T init)

+ Here is the caller graph for this function: