Assigns every node in the input network an index number,
            such that nodes in the same layer will be labeled with
            consecutive indices in left to right order.
            Uses a naive implementation that assigns indices to nodes as they
            are encountered in a sweep of the network.  Because of the way
            networks are stored, this has the effect of initialy placing all
            "artificial" nodes to the right of all "real" nodes.
            
            
            
            Syntax
            
            
            
            
            protected virtual void NaiveInitializeIndices()
             
        
             
        
            
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also