Skip to content
Snippets Groups Projects
Commit 82891d3c authored by Pierre Fernbach's avatar Pierre Fernbach
Browse files

[polynomial] constructor from boundary conditions : correctly call safe_check"

parent d5b2fb69
No related branches found
No related tags found
No related merge requests found
......@@ -116,6 +116,7 @@ namespace curves
coeffs.push_back(init);
coeffs.push_back((end-init)/(max-min));
coefficients_ = init_coeffs(coeffs.begin(), coeffs.end());
safe_check();
}
///
......@@ -155,6 +156,7 @@ namespace curves
bc[3] = d_end[i];
coefficients_.row(i) = (m_inv*bc).transpose();
}
safe_check();
}
///
......@@ -202,6 +204,7 @@ namespace curves
bc[5] = dd_end[i];
coefficients_.row(i) = (m_inv*bc).transpose();
}
safe_check();
}
......
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