ac207-autodiff
Return the sum of self and other.
Examples
Node and scalar:
>>> ad.Node(42) + 5 Node(47)
Two nodes:
>>> ad.Node(42) + ad.Node(1) Node(43) >>> ad.Node(42) + ad.Node.constant(1) Node(43)
previous
autodiff.reverse.Node
next
autodiff.reverse.Node.__radd__