Skip to content
Snippets Groups Projects
Commit abb88b44 authored by Manuel Günther's avatar Manuel Günther
Browse files

Using the nocheck version of linsolve, as it was before

parent 7bd7d467
Branches
Tags
1 merge request!32Resolve "Updated API in `bob.math` requires update in this package, too"
Pipeline #
...@@ -362,7 +362,7 @@ double bob::measure::rocch2eer(const blitz::Array<double, 2> &pfa_pmiss) { ...@@ -362,7 +362,7 @@ double bob::measure::rocch2eer(const blitz::Array<double, 2> &pfa_pmiss) {
eerseg = 0.; eerseg = 0.;
else { else {
// Find line coefficients seg s.t. XY.seg = 1, // Find line coefficients seg s.t. XY.seg = 1,
bob::math::linsolve(XY, one, seg); bob::math::linsolve_(XY, one, seg);
// Candidate for the EER (to be compared to current value) // Candidate for the EER (to be compared to current value)
eerseg = 1. / blitz::sum(seg); eerseg = 1. / blitz::sum(seg);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment