On Thursday, 26 February 2015 at 23:25:22 UTC, Ali Çehreli wrote:
On 02/26/2015 12:01 PM, Andrey wrote:> HI guys!!!
>
> Have a problem with 3d array memory allocation in next code:
>
> //
> class NeuronNet(T, const uint layersNum)
> {
>
On 02/26/2015 12:01 PM, Andrey wrote:> HI guys!!!
>
> Have a problem with 3d array memory allocation in next code:
>
> //
> class NeuronNet(T, const uint layersNum)
> {
> T[]_inputs;
> T[][layersNum - 2]_hidd
HI guys!!!
Have a problem with 3d array memory allocation in next code:
//
class NeuronNet(T, const uint layersNum)
{
T[] _inputs;
T[][layersNum - 2] _hidden;
T[]