Skip to content
Snippets Groups Projects

[langrange] Cast to range type

Merged Timo Koch requested to merge fix/issue-19 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -330,7 +330,7 @@ namespace Dune { namespace Impl
{
if (m == p)
for (unsigned int l = 0; l < i[p]; ++l)
prod *= (j==l) ? R(k) / (i[p]-l) : (kx[p]-l) / (i[p]-l);
prod *= (j==l) ? R(k) / (i[p]-l) : R(kx[p]-l) / (i[p]-l);
else
prod *= factor[p];
}
Loading