Exemplo n.º 1
0
 public NetModule(NetComponents nc, ICommActions comm, int unitSeedBase, int layerCnt, int layerNo, int connCnt)
 {
     NetC         = nc;
     Comm         = comm;
     UnitSeedBase = unitSeedBase;
     LayerCount   = layerCnt;
     LayerNo      = layerNo;
     ConnCount    = connCnt;
 }
Exemplo n.º 2
0
        public void Init()
        {
            NetComponents nc = new NetComponents();

            nc.ICon   = new InputContainerSCV();
            nc.SiBef  = new SeedIndexSCV();
            nc.SiAllo = new SeedIndexSCV();
            nc.SiAft  = new SeedIndexSCV();
            nc.SCon   = new SeedContainerSCV();
            nc.RCon   = new ResultContainerSCV();
        }