Skip to content

Commit

Permalink
minor improves
Browse files Browse the repository at this point in the history
  • Loading branch information
YaqiWang committed Jun 22, 2019
1 parent 69edf9a commit 95377e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 1 addition & 2 deletions framework/include/problems/SubProblem.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class SubProblem : public Problem
virtual ArrayMooseVariable & getArrayVariable(THREAD_ID tid, const std::string & var_name) = 0;

/// Returns the variable name of a component of an array variable
static NonlinearVariableName arrayVariableComponent(const std::string & var_name, unsigned int i)
static std::string arrayVariableComponent(const std::string & var_name, unsigned int i)
{
return var_name + "_" + std::to_string(i);
}
Expand Down Expand Up @@ -748,4 +748,3 @@ namespace Moose
void initial_condition(EquationSystems & es, const std::string & system_name);

} // namespace Moose

3 changes: 3 additions & 0 deletions framework/src/actions/ActionWarehouse.C
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,9 @@ ActionWarehouse::executeAllActions()
if (_final_task != "" && task == _final_task)
break;
}

if (_show_actions)
_console << "[DBG][ACT] Finished executing all actions" << std::endl;
}

void
Expand Down

0 comments on commit 95377e9

Please sign in to comment.