Skip to content
Snippets Groups Projects
Commit e7eea47b authored by IvBu's avatar IvBu
Browse files

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

parent b021f4b5
No related branches found
No related tags found
1 merge request!3767[test][multidomain] Change pressure entries type to double.
Pipeline #41800 waiting for manual action
...@@ -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<double> 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