AIMA.Core.Agent.Impl.AProg.SimpleRule.ORCondition.ORCondition C# (CSharp) 메소드

ORCondition() 공개 메소드

public ORCondition ( Condition aLeftCon, Condition aRightCon ) : System
aLeftCon Condition
aRightCon Condition
리턴 System
	public ORCondition(Condition aLeftCon, Condition aRightCon) {
		Debug.Assert(null != aLeftCon);
        Debug.Assert(null != aRightCon);

		left = aLeftCon;
		right = aRightCon;
	}