
19 Mar
2016
19 Mar
'16
9:43 p.m.
On 03/19/2016 03:22 PM, Phil Bouchard wrote:
On 03/19/2016 01:53 PM, Phil Bouchard wrote:
return node_ptr<neuron_base>(x_, new node<neuron_base>(* this)); //< *** Copy of *this
It is always possible to create a new helper function:
make_node_from_this(x_, * this);
Actually just using: return make_node<neuron_base>(x_, * this); Is okay.