コード例 #1
0
ファイル: ControlNetwork.cs プロジェクト: MojtabaHafezi/PCG
 //calculates the outputs for using the method GetOutput
 public void FeedForward()
 {
     Input.CalculatedOutput();
     Hidden.CalculatedOutput();
     Output.CalculatedOutput();
 }