Changeset d6a338 for src/mg.cpp
- Timestamp:
- Apr 16, 2013, 11:27:31 AM (13 years ago)
- Children:
- 177495
- Parents:
- e58835d
- File:
-
- 1 edited
-
src/mg.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/mg.cpp
re58835d rd6a338 133 133 if (GetFactory().TestObject("COMM") && GetFactory().TestObject("INTERFACE")) { 134 134 135 Multigrid* sol = new Multigrid(GetComm(), GetInterface()); 135 GetComm()->ComputeDomainDecomposition(*GetInterface()); 136 137 Multigrid* sol = new Multigrid(*GetComm(), *GetInterface()); 136 138 sol->Register("SOL"); 137 139 138 Multigrid* rhs = new Multigrid( GetComm(),GetInterface());140 Multigrid* rhs = new Multigrid(*GetComm(), *GetInterface()); 139 141 rhs->Register("RHS"); 140 142 … … 149 151 GetCycle()->Generate(); 150 152 151 if (GetFactory().TestObject("COMM")) 152 GetComm()->PostInit(*GetSol(), *GetRhs()); 153 GetComm()->PostInit(*GetSol(), *GetRhs()); 153 154 154 155 }
Note:
See TracChangeset
for help on using the changeset viewer.
