Skip to content

Commit

Permalink
Update src/parallel/StaticIrregDomainDecomposition.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: FG-TUM <[email protected]>
  • Loading branch information
amartyads and FG-TUM authored Feb 23, 2024
1 parent 54d7eb1 commit 8973346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parallel/StaticIrregDomainDecomposition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void StaticIrregDomainDecomposition::updateSubdomainWeightsFromFile(const std::s
Log::global_log->info() << "Weights for subdomains for StaticIrregDomainDecomposition have been read" << std::endl;
for (int i = 0; i < 3; i++) {
std::stringstream ss;
for (int w: _subdomainWeights[i]) {
for (auto w: _subdomainWeights[i]) {
ss << w << " ";
}
Log::global_log->info() << "Weights for axis " << i << ": " << ss.str() << std::endl;
Expand Down

0 comments on commit 8973346

Please sign in to comment.