Searched refs:nonlinearEdges (Results 1 – 12 of 12) sorted by relevance
/third_party/boost/libs/yap/example/ |
D | autodiff_example.cpp | 321 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() 343 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() 361 nonlinearEdges(x1,s); in BOOST_AUTO_TEST_CASE() 374 nonlinearEdges(p,s); in BOOST_AUTO_TEST_CASE() 400 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() 426 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() 484 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() 509 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() 544 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() 595 nonlinearEdges(root,s); in BOOST_AUTO_TEST_CASE() [all …]
|
/third_party/boost/libs/yap/example/autodiff_library/ |
D | PNode.h | 35 void nonlinearEdges(EdgeSet&);
|
D | VNode.h | 31 void nonlinearEdges(EdgeSet&);
|
D | UaryOPNode.h | 40 void nonlinearEdges(EdgeSet&);
|
D | BinaryOPNode.h | 42 void nonlinearEdges(EdgeSet& a);
|
D | Node.h | 42 virtual void nonlinearEdges(EdgeSet&) = 0;
|
D | autodiff.h | 106 extern void nonlinearEdges(Node* root, EdgeSet& edges);
|
D | autodiff.cpp | 258 void nonlinearEdges(Node* root, EdgeSet& edges) in nonlinearEdges() function 260 root->nonlinearEdges(edges); in nonlinearEdges()
|
D | PNode.cpp | 115 void PNode::nonlinearEdges(EdgeSet& edges) in nonlinearEdges() function in AutoDiff::PNode
|
D | UaryOPNode.cpp | 272 void UaryOPNode::nonlinearEdges(EdgeSet& edges) in nonlinearEdges() function in AutoDiff::UaryOPNode 310 left->nonlinearEdges(edges); in nonlinearEdges()
|
D | VNode.cpp | 135 void VNode::nonlinearEdges(EdgeSet& edges) in nonlinearEdges() function in AutoDiff::VNode
|
D | BinaryOPNode.cpp | 397 void BinaryOPNode::nonlinearEdges(EdgeSet& edges) in nonlinearEdges() function in AutoDiff::BinaryOPNode 454 left->nonlinearEdges(edges); in nonlinearEdges() 455 right->nonlinearEdges(edges); in nonlinearEdges()
|