public MicroRed() { INPUTLayer = new INPUTLayer(0, @"E:\XudonV2\XudonV2NetStandard\Resources\Pins.xml"); FUZZYLayer = new FUZZYLayer(1, 255); INPUTLayer.ConnectThisLayerWithAnotherLayerCreatingChannelsWithPins(FUZZYLayer); DIFUSSORLayer = new DIFUSSORLayer(2); FUZZYLayer.ConnectThisLayerWithAnotherLayerCreatingChannelsWithPins(DIFUSSORLayer); ANDLayer = new ANDLayer(3); DIFUSSORLayer.ConnectThisLayerWithAnotherLayerCreatingChannelsWithPins(ANDLayer); ORLayer = new ORLayer(4); ANDLayer.ConnectThisLayerWithAnotherLayerCreatingChannelsWithPins(ORLayer); }
public void GetInputData() //Diastole { INPUTLayer.GetInputData(); }