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

[MaL] fixed one integration weight

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