Searched defs:num_destructions (Results 1 - 1 of 1) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dproblem_test.cc306 explicit DestructorCountingCostFunction(int *num_destructions) argument
307 : num_destructions_(num_destructions) {}
325 int num_destructions = 0; local
334 CostFunction* cost = new DestructorCountingCostFunction(&num_destructions);
342 CHECK_EQ(num_destructions, 1);
347 int num_destructions = 0; local
354 new DestructorCountingCostFunction(&num_destructions);
356 new DestructorCountingCostFunction(&num_destructions);
363 CHECK_EQ(num_destructions, 0);
365 CHECK_EQ(num_destructions,
[all...]

Completed in 34 milliseconds