Changeset 894a5f for src/smoother/smoother.cpp
- Timestamp:
- Feb 2, 2012, 1:58:12 PM (14 years ago)
- Children:
- 32ff22
- Parents:
- 01be70
- File:
-
- 1 edited
-
src/smoother/smoother.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/smoother/smoother.cpp
r01be70 r894a5f 13 13 14 14 #include "base/discretization.hpp" 15 #include "base/timer.hpp"16 15 #include "comm/comm.hpp" 17 16 #include "smoother/smoother.hpp" … … 22 21 void Smoother::Run(Multigrid& sol, Multigrid& rhs, int steps) 23 22 { 24 Timer::Start("SmootherWithCommunication");25 26 23 for (int i=0; i<steps; i++) { 27 28 MG::GetComm()->CommToGhosts(sol());29 24 30 25 if (sol().Global().BoundaryType() == LocallyRefined) … … 34 29 35 30 } 36 37 Timer::Stop("SmootherWithCommunication");38 31 }
Note:
See TracChangeset
for help on using the changeset viewer.
