示例#1
0
 public NodeSuccessors(FunctionType functionType)
 {
     //deprecated - not implemented. Not supported anymore.
     throw new NotImplementedException();
 }
示例#2
0
 /// <summary>
 /// Two types match if they have the same number of outputs of each type
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public bool matches(FunctionType other)
 {
     return(this.logicOutputsCount == other.logicOutputsCount &&
            this.numericOutputsCount == other.numericOutputsCount);
 }