pub struct NodeStdComp {
pub phi: Node,
pub gphi: Vec<(Node, Node)>,
pub hphi: Vec<(Node, Node, Node)>,
pub prop: NodeStdProp,
}Expand description
Standard components of expression node.
Fields§
§phi: NodeExpression.
gphi: Vec<(Node, Node)>Expression gradient entries.
hphi: Vec<(Node, Node, Node)>Expression hessian entries. They include only one term of each off-diagonal pair.
prop: NodeStdPropStandard properties of expression.
Auto Trait Implementations§
impl !Send for NodeStdComp
impl !Sync for NodeStdComp
impl Freeze for NodeStdComp
impl RefUnwindSafe for NodeStdComp
impl Unpin for NodeStdComp
impl UnsafeUnpin for NodeStdComp
impl UnwindSafe for NodeStdComp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more