Encog.Neural.Networks.BasicNetwork.Equals C# (CSharp) Метод

Equals() публичный Метод

Compare the two neural networks. For them to be equal they must be of the same structure, and have the same matrix values.
public Equals ( BasicNetwork other ) : bool
other BasicNetwork The other neural network.
Результат bool
        public bool Equals(BasicNetwork other)
        {
            return Equals(other, EncogFramework.DefaultPrecision);
        }

Same methods

BasicNetwork::Equals ( BasicNetwork other, int precision ) : bool