Phpml\NeuralNetwork\Node\Neuron\Synapse::__construct PHP Method

__construct() public method

public __construct ( Phpml\NeuralNetwork\Node $node, float $weight = null )
$node Phpml\NeuralNetwork\Node
$weight float
    public function __construct(Node $node, float $weight = null)
    {
        $this->node = $node;
        $this->weight = $weight ?: $this->generateRandomWeight();
    }