OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TolerantLoss
(Results
1 - 4
of
4
) sorted by null
/external/ceres-solver/internal/ceres/
loss_function_test.cc
114
TEST(LossFunction,
TolerantLoss
) {
115
AssertLossFunctionIsValid(
TolerantLoss
(0.7, 0.4), 0.357);
116
AssertLossFunctionIsValid(
TolerantLoss
(0.7, 0.4), 1.792);
117
AssertLossFunctionIsValid(
TolerantLoss
(0.7, 0.4), 55.5);
118
AssertLossFunctionIsValid(
TolerantLoss
(1.3, 0.1), 0.357);
119
AssertLossFunctionIsValid(
TolerantLoss
(1.3, 0.1), 1.792);
120
AssertLossFunctionIsValid(
TolerantLoss
(1.3, 0.1), 55.5);
123
TolerantLoss
(0.7, 0.4).Evaluate(0.0, rho);
127
AssertLossFunctionIsValid(
TolerantLoss
(20.0, 1.0), 20.0 + 36.6);
128
AssertLossFunctionIsValid(
TolerantLoss
(20.0, 1.0), 20.0 + 36.7)
[
all
...]
loss_function.cc
89
TolerantLoss
::
TolerantLoss
(double a, double b)
97
void
TolerantLoss
::Evaluate(double s, double rho[3]) const {
c_api.cc
127
return new ceres::
TolerantLoss
(a, b);
/external/ceres-solver/include/ceres/
loss_function.h
268
class CERES_EXPORT
TolerantLoss
: public LossFunction {
270
explicit
TolerantLoss
(double a, double b);
Completed in 2717 milliseconds