Skip to content
Snippets Groups Projects
Commit a9e92c2c authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/use-correct-type' into 'master'

[test][multidomain] Change pressure entries type to double.

See merge request !3767
parents b021f4b5 709241a3
No related branches found
No related tags found
1 merge request!3767[test][multidomain] Change pressure entries type to double.
Pipeline #41924 passed
...@@ -239,7 +239,7 @@ int main(int argc, char** argv) ...@@ -239,7 +239,7 @@ int main(int argc, char** argv)
const auto& bBoxTree = gridGeometry.boundingBoxTree(); const auto& bBoxTree = gridGeometry.boundingBoxTree();
// copy data from the subdomains to full domain data vectors // copy data from the subdomains to full domain data vectors
std::vector<int> processRank(gridView.size(0), 0); // sequential simulation std::vector<int> processRank(gridView.size(0), 0); // sequential simulation
std::vector<int> pressure(gridView.size(0)); std::vector<Scalar> pressure(gridView.size(0));
for (const auto& element : elements(gridView0)) for (const auto& element : elements(gridView0))
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment