Skip to content

Commit

Permalink
fix a few syntax errors from the refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrismarsh committed Feb 16, 2024
1 parent 96f130d commit 0a28add
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/preprocessing/partition/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ class preprocessingTriangulation : public triangulation
}

SPDLOG_DEBUG("MPI Process {} : start {}, end {}, number {}",
mpi_rank, face_start_id, face_end_idx, _local_faces.size());
mpi_rank, face_start_idx, face_end_idx, _local_faces.size());
}
void read_h5(const std::string& mesh_filename)
{
Expand Down Expand Up @@ -448,7 +448,7 @@ class preprocessingTriangulation : public triangulation
CHM_THROW_EXCEPTION(mesh_error, "Created a mesh with 0 elements!");
}

SPDLOG_DEBUG("Created a mesh with {} triangles", size_faces())
SPDLOG_DEBUG("Created a mesh with {} triangles", size_faces());

}

Expand Down Expand Up @@ -1215,7 +1215,7 @@ class preprocessingTriangulation : public triangulation
}
}

SPDLOG_DEBUG("This mesh partition has {} unique vertexes", vertex_global_id.size())
SPDLOG_DEBUG("This mesh partition has {} unique vertexes", vertex_global_id.size());
// build a list of all the above identified vertexes and set their local id
std::vector<Delaunay::Vertex_handle> local_vertexes; // vertexes that this part of the mesh needs
local_vertexes.resize(vertex_global_id.size());
Expand Down Expand Up @@ -1531,7 +1531,7 @@ int main(int argc, char* argv[])

if (vm.count("standalone"))
{
SPDLOG_WARN( << "Standalone option enabled. This will not write ghost faces and is intended to write a specific "
SPDLOG_WARN( "Standalone option enabled. This will not write ghost faces and is intended to write a specific "
"rank as a standalone mesh for debugging.");
}

Expand Down

0 comments on commit 0a28add

Please sign in to comment.