Skip to content
Snippets Groups Projects
Commit c630d329 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

added get/set functionality

parent b0206597
No related branches found
No related tags found
No related merge requests found
......@@ -363,6 +363,12 @@ namespace AMDiS {
return timestepNumber;
}
/// Sets \ref timestepNumber.
inline void setTimestepNumber(int num)
{
timestepNumber = AMDiS::min(nTimesteps,num);
}
/// Returns \ref nTimesteps.
inline int getNumberOfTimesteps()
{
......@@ -372,7 +378,7 @@ namespace AMDiS {
/// Sets \ref nTimesteps.
inline void setNumberOfTimesteps(int num)
{
nTimesteps = num;
nTimesteps = AMDiS::max(0,num);
}
/// Increments \ref timestepNumber by 1;
......@@ -550,7 +556,7 @@ namespace AMDiS {
{
return maxTimestep;
}
/// Gets \ref &timestep
inline double *getTimestepPtr()
{
......@@ -756,7 +762,7 @@ namespace AMDiS {
/// Maximal step size
double maxTimestep;
/// Number of current time step
int timestepNumber;
......
......@@ -311,7 +311,6 @@ namespace AMDiS {
for (di = dofIndexedList.begin(); di != end; ++di)
(*di)->compressDOFIndexed(first, last, new_dof);
std::list<DOFContainer*>::iterator dc;
std::list<DOFContainer*>::iterator endc = dofContainerList.end();
for (dc = dofContainerList.begin(); dc != endc; ++dc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment