Changeset dfed1c for src/smoother/smoother.cpp
- Timestamp:
- Nov 22, 2011, 9:22:10 PM (14 years ago)
- Children:
- facba0
- Parents:
- 66f24d
- File:
-
- 1 edited
-
src/smoother/smoother.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/smoother/smoother.cpp
r66f24d rdfed1c 13 13 14 14 #include "base/discretization.hpp" 15 #include "base/timer.hpp" 15 16 #include "comm/comm.hpp" 16 17 #include "smoother/smoother.hpp" … … 21 22 void Smoother::Run(Multigrid& sol, Multigrid& rhs, int steps) 22 23 { 24 Timer::Start("SmootherWithCommunication"); 25 23 26 for (int i=0; i<steps; i++) { 27 24 28 MG::GetComm()->CommToGhosts(sol()); 25 29 … … 28 32 29 33 this->Compute(sol(), rhs()); 34 30 35 } 36 37 Timer::Stop("SmootherWithCommunication"); 31 38 }
Note:
See TracChangeset
for help on using the changeset viewer.
