Skip to content
Snippets Groups Projects
Commit b9e93111 authored by Christian Engwer's avatar Christian Engwer
Browse files

Merge branch 'cleanup/geometryTypeFromVertexCount' into 'master'

[cleanup] fix inconsistencies after renaming functions in !35

`geometryTypeFromVertexCount()` was named `geometryTypeFromVertices()`
in earlier versions of merge request !35 and the old name was still used in some places.

See merge request !43
parents 908b99dd e64cdfc4
No related branches found
No related tags found
1 merge request!43[cleanup] fix inconsistencies after renaming functions in !35
Pipeline #
......@@ -463,7 +463,7 @@ namespace Dune
* \note This code only works up to dimension 3.
* In higher dimensions the number of vertices does not uniquely identify the type of polyhedron.
*/
void makeFromVertices(unsigned int dim, unsigned int vertices) DUNE_DEPRECATED_MSG("Use the utility function geometryTypeFromVertices(...) instead.")
void makeFromVertices(unsigned int dim, unsigned int vertices) DUNE_DEPRECATED_MSG("Use the utility function geometryTypeFromVertexCount(...) instead.")
{
*this = geometryTypeFromVertexCount(dim, vertices);
return;
......
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_GEOMETRY_TYPE_FROM_VERTICES_HH
#define DUNE_GEOMETRY_TYPE_FROM_VERTICES_HH
#ifndef DUNE_GEOMETRY_TYPE_FROM_VERTEX_COUNT_HH
#define DUNE_GEOMETRY_TYPE_FROM_VERTEX_COUNT_HH
#include <dune/geometry/type.hh>
......@@ -52,10 +52,10 @@ namespace Dune {
DUNE_THROW(NotImplemented, "3d elements with " << vertices << " corners are not supported!");
}
default :
DUNE_THROW(NotImplemented, "geometryTypeFromVertices works only up to dim=3");
DUNE_THROW(NotImplemented, "geometryTypeFromVertexCount works only up to dim=3");
}
}
}
#endif // DUNE_GEOMETRY_TYPE_FROM_VERTICES_HH
#endif // DUNE_GEOMETRY_TYPE_FROM_VERTEX_COUNT_HH
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