public NodeSuccessors(FunctionType functionType) { //deprecated - not implemented. Not supported anymore. throw new NotImplementedException(); }
/// <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); }