1 |
|
|
2 |
/* $Id:$ */ |
/* $Id$ */ |
3 |
|
|
4 |
/******************************************************* |
/******************************************************* |
5 |
* |
* |
82 |
inline FunctionSpace getFunctionSpace() const |
inline FunctionSpace getFunctionSpace() const |
83 |
{ |
{ |
84 |
if (isEmpty()) |
if (isEmpty()) |
85 |
throw TransportProblemException("Error - Matrix is empty."); |
throw TransportProblemException("Error - Transport Problem is empty."); |
86 |
return m_functionspace; |
return m_functionspace; |
87 |
} |
} |
88 |
|
|
94 |
inline int getBlockSize() const |
inline int getBlockSize() const |
95 |
{ |
{ |
96 |
if (isEmpty()) |
if (isEmpty()) |
97 |
throw TransportProblemException("Error - Matrix is empty."); |
throw TransportProblemException("Error - Transport Problem is empty."); |
98 |
return m_blocksize; |
return m_blocksize; |
99 |
} |
} |
100 |
|
|