added placeholder for needed numerical derivative test

release/4.3a0
Mike Bosse 2014-12-15 23:29:59 +01:00
parent 07bcc18d43
commit 79ea949df9
1 changed files with 8 additions and 0 deletions

View File

@ -95,6 +95,14 @@ TEST(testNumericalDerivative, numericalHessian211) {
EXPECT(assert_equal(expected22, actual22, 1e-5));
}
TEST(testNumericalDerivative, numericalHessian212) {
// should implement test for all the variants of numerical Hessian, for mixed dimension types,
// like Point3 y = Project(Camera, Point3);
// I'm not sure how numericalHessian212 is different from 211 or 222 -Mike B.
EXPECT(false);
}
/* ************************************************************************* */
double f4(double x, double y, double z) {
return sin(x) * cos(y) * z * z;