Skip to content
Snippets Groups Projects
Commit ca51545d authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

[MGTL] Clang format on output.

parent 63812e34
No related branches found
No related tags found
No related merge requests found
...@@ -54,9 +54,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint( ...@@ -54,9 +54,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint(
OGS_FATAL( OGS_FATAL(
"BoundaryElementsAtPoint: the mesh node searcher found {:d} points " "BoundaryElementsAtPoint: the mesh node searcher found {:d} points "
"near the requested point ({:f}, {:f}, {:f}) in the mesh, while " "near the requested point ({:f}, {:f}, {:f}) in the mesh, while "
"exactly " "exactly one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has "
"one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has distance " "distance {:f}.",
"{:f}.",
node_ids.size(), _point[0], _point[1], _point[2], node_ids.size(), _point[0], _point[1], _point[2],
mesh_nodes[nearest_node_id]->getID(), mesh_nodes[nearest_node_id]->getID(),
(*mesh_nodes[nearest_node_id])[0], (*mesh_nodes[nearest_node_id])[0],
...@@ -67,9 +66,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint( ...@@ -67,9 +66,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint(
WARN( WARN(
"BoundaryElementsAtPoint: the mesh node searcher found {:d} points " "BoundaryElementsAtPoint: the mesh node searcher found {:d} points "
"near the requested point ({:f}, {:f}, {:f}) in the mesh, while " "near the requested point ({:f}, {:f}, {:f}) in the mesh, while "
"exactly " "exactly one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has "
"one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has distance " "distance {:f}.",
"{:f}.",
node_ids.size(), _point[0], _point[1], _point[2], node_ids.size(), _point[0], _point[1], _point[2],
mesh_nodes[nearest_node_id]->getID(), (*mesh_nodes[nearest_node_id])[0], mesh_nodes[nearest_node_id]->getID(), (*mesh_nodes[nearest_node_id])[0],
(*mesh_nodes[nearest_node_id])[1], (*mesh_nodes[nearest_node_id])[2], (*mesh_nodes[nearest_node_id])[1], (*mesh_nodes[nearest_node_id])[2],
......
...@@ -37,8 +37,7 @@ std::vector<std::size_t> identifySubdomainMeshNodes( ...@@ -37,8 +37,7 @@ std::vector<std::size_t> identifySubdomainMeshNodes(
OGS_FATAL( OGS_FATAL(
"Expected to find exactly one node in the bulk mesh for each node " "Expected to find exactly one node in the bulk mesh for each node "
"of the subdomain; Found {:d} nodes in the bulk mesh out of {:d} " "of the subdomain; Found {:d} nodes in the bulk mesh out of {:d} "
"nodes " "nodes in the subdomain.",
"in the subdomain.",
bulk_node_ids.size(), subdomain_mesh.getNumberOfNodes()); bulk_node_ids.size(), subdomain_mesh.getNumberOfNodes());
} }
...@@ -174,8 +173,7 @@ void updateOrCheckExistingSubdomainProperty( ...@@ -174,8 +173,7 @@ void updateOrCheckExistingSubdomainProperty(
// //
WARN( WARN(
"There is already a '{:s}' property present in the subdomain mesh " "There is already a '{:s}' property present in the subdomain mesh "
"'{:s}' " "'{:s}' and it is not equal to the newly computed values.",
"and it is not equal to the newly computed values.",
property_name.c_str(), property_name.c_str(),
mesh.getName().c_str()); mesh.getName().c_str());
......
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