added placeholder for needed numerical derivative test
parent
07bcc18d43
commit
79ea949df9
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue