Anchors
C++ library for Incremental Computing
|
A single node in the computation graph containing a value. More...
#include <anchor.h>
Public Member Functions | |
Anchor (const T &value) | |
Creates an Anchor. More... | |
Anchor (const std::shared_ptr< AnchorWrap< InputType1 > > &input, const SingleInputUpdater &updater) | |
Creates an Anchor from an input Anchor. More... | |
Anchor (const std::shared_ptr< AnchorWrap< InputType1 > > &firstInput, const std::shared_ptr< AnchorWrap< InputType2 > > &secondInput, const DualInputUpdater &updater) | |
Creates an Anchor from two input Anchors. More... | |
A single node in the computation graph containing a value.
|
explicit |
Creates an Anchor.
See Anchors::create(const T& value)
value | - initial value of the Anchor |
|
explicit |
Creates an Anchor from an input Anchor.
See Anchors::map()
|
explicit |