A flat network designed to handle an RBF.
Inheritance: FlatNetwork
        /// <summary>
        /// Clone the network.
        /// </summary>
        /// <returns>A clone of the network.</returns>
        public override object Clone()
        {
            FlatNetworkRBF result = new FlatNetworkRBF();

            CloneFlatNetwork(result);
            result.rbf = this.rbf;
            return(result);
        }
 /// <summary>
 /// Clone the network. 
 /// </summary>
 /// <returns>A clone of the network.</returns>
 public override object Clone()
 {
     FlatNetworkRBF result = new FlatNetworkRBF();
     CloneFlatNetwork(result);
     result.rbf = this.rbf;
     return result;
 }