We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the following code:
DiscreteDomain<BSplines> const dom_bsplines_singular( DiscreteElement<BSplines>(0), DiscreteVector<BSplines>(BSplines::n_singular_basis())); Chunk<double, DiscreteDomain<BSplines>> singular_spline_coef(dom_bsplines_singular); for_each(singular_spline_coef.domain(), [&](DiscreteElement<BSplines> const i) { singular_spline_coef(i) = 1.0; });
where n_singular_basis() returns 0, the loop is entered resulting in a seg fault at the line singular_spline_coef(i) = 1.0;
n_singular_basis()
singular_spline_coef(i) = 1.0;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In the following code:
where
n_singular_basis()
returns 0, the loop is entered resulting in a seg fault at the linesingular_spline_coef(i) = 1.0;
The text was updated successfully, but these errors were encountered: