Home
last modified time | relevance | path

Searched refs:hess (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/yap/example/autodiff_library/
Dautodiff.cpp214 double hess = TT->get(node->index -1); in hess_reverse() local
215 if(!isnan(hess)) in hess_reverse()
217 chess(i) = chess(i) + hess; in hess_reverse()
/third_party/boost/libs/yap/example/
Dautodiff_example.cpp704 double* hess = new double[len]; in test_hess_forward() local
705 hess_forward(root,nvar,&hess); in test_hess_forward()
707 cout<<"hess["<<i<<"]="<<hess[i]<<endl; in test_hess_forward()
709 delete[] hess; in test_hess_forward()
825 vector<double> hess; in BOOST_AUTO_TEST_CASE() local
826 hess_reverse(op1,list,hess); in BOOST_AUTO_TEST_CASE()
827 BOOST_CHECK_EQUAL(hess.size(),1); in BOOST_AUTO_TEST_CASE()
828 CHECK_CLOSE(hess[0],2); in BOOST_AUTO_TEST_CASE()