Skip to content
Snippets Groups Projects
Commit 742424e0 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[MaL] fix integration point of 1st order tet

parent 18b45cad
No related branches found
No related tags found
No related merge requests found
...@@ -11,9 +11,9 @@ ...@@ -11,9 +11,9 @@
namespace MathLib namespace MathLib
{ {
template <>
template <> const std::array<std::array<double, 3>, GaussLegendreTet<1>::NPoints> const std::array<std::array<double, 3>, GaussLegendreTet<1>::NPoints>
GaussLegendreTet<1>::X = {{{{1./3., 1./3., 1./3.}}}}; GaussLegendreTet<1>::X = {{{{1. / 4., 1. / 4., 1. / 4.}}}};
template <> template <>
double const GaussLegendreTet<1>::W[1] = {1. / 6.}; double const GaussLegendreTet<1>::W[1] = {1. / 6.};
......
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