Home | History | Annotate | Download | only in ceres

Lines Matching defs:constant

64       << "The set of constant parameters should contain at least "
66 << "constant, then do not use a SubsetParameterization";
68 vector<int> constant = constant_parameters;
69 sort(constant.begin(), constant.end());
70 CHECK(unique(constant.begin(), constant.end()) == constant.end())
71 << "The set of constant parameters cannot contain duplicates";
73 << "Number of parameters held constant should be less "
75 << "to hold the entire parameter block constant, then a "
76 << "efficient way is to directly mark it as constant "
78 CHECK_GE(*min_element(constant.begin(), constant.end()), 0);
79 CHECK_LT(*max_element(constant.begin(), constant.end()), size);