Skip to content
Snippets Groups Projects
Commit 374fd746 authored by Elias Pipping's avatar Elias Pipping
Browse files

[Cleanup] Use fineVertexCount

parent 4612a93a
No related branches found
No related tags found
No related merge requests found
...@@ -453,7 +453,7 @@ int main(int argc, char *argv[]) { ...@@ -453,7 +453,7 @@ int main(int argc, char *argv[]) {
{ {
std::fstream vertexCoordinateWriter("coordinates", std::fstream::out); std::fstream vertexCoordinateWriter("coordinates", std::fstream::out);
for (size_t i = 0; i < frictionalNodes.size(); ++i) for (size_t i = 0; i < fineVertexCount; ++i)
if (frictionalNodes[i][0]) if (frictionalNodes[i][0])
vertexCoordinateWriter << vertexCoordinates[i] << std::endl; vertexCoordinateWriter << vertexCoordinates[i] << std::endl;
vertexCoordinateWriter.close(); vertexCoordinateWriter.close();
......
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