Skip to content
Snippets Groups Projects
Commit 17f3c09a authored by Soeren Peters's avatar Soeren Peters
Browse files

Fix error that with openmp i needs to be signed integral.

parent d9359d10
No related branches found
No related tags found
1 merge request!217Remove old logger from basics and rework basics.
...@@ -82,7 +82,7 @@ void copyEdgeNodes(std::vector<LBMSimulationParameter::EdgeNodePositions> &edgeN ...@@ -82,7 +82,7 @@ void copyEdgeNodes(std::vector<LBMSimulationParameter::EdgeNodePositions> &edgeN
int numNodesInBufferSend = 0; int numNodesInBufferSend = 0;
#pragma omp parallel for #pragma omp parallel for
for (uint i = 0; i < edgeNodes.size(); i++) { for (int i = 0; i < (int)edgeNodes.size(); i++) {
indexInSubdomainRecv = edgeNodes[i].indexOfProcessNeighborRecv; indexInSubdomainRecv = edgeNodes[i].indexOfProcessNeighborRecv;
indexInSubdomainSend = edgeNodes[i].indexOfProcessNeighborSend; indexInSubdomainSend = edgeNodes[i].indexOfProcessNeighborSend;
numNodesInBufferRecv = recvProcessNeighborHost[indexInSubdomainRecv].numberOfNodes; numNodesInBufferRecv = recvProcessNeighborHost[indexInSubdomainRecv].numberOfNodes;
......
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