Skip to content
Snippets Groups Projects
Commit bc29c07b authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Avoid deprecated method GeometryType::makeSimplex

parent 2154bf3b
No related branches found
No related tags found
1 merge request!30Add missing std prefixes
Pipeline #3477 failed
......@@ -76,8 +76,7 @@ void testPermutationInvariance(const std::vector<TargetSpace>& corners)
PQkLocalFiniteElementCache<double,double,domainDim,1> feCache;
typedef typename PQkLocalFiniteElementCache<double,double,domainDim,1>::FiniteElementType LocalFiniteElement;
GeometryType simplex;
simplex.makeSimplex(domainDim);
GeometryType simplex = GeometryTypes::simplex(domainDim);
//
std::vector<TargetSpace> cornersRotated1(domainDim+1);
......
......@@ -118,8 +118,7 @@ void testPermutationInvariance(const std::vector<TargetSpace>& corners)
PQkLocalFiniteElementCache<double,double,domainDim,1> feCache;
typedef typename PQkLocalFiniteElementCache<double,double,domainDim,1>::FiniteElementType LocalFiniteElement;
GeometryType simplex;
simplex.makeSimplex(domainDim);
GeometryType simplex = GeometryTypes::simplex(domainDim);
//
std::vector<TargetSpace> cornersRotated1(domainDim+1);
......
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