AIMA.Core.Agent.Impl.AProg.SimpleRule.ORCondition.ORCondition C# (CSharp) Method

ORCondition() public method

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

		left = aLeftCon;
		right = aRightCon;
	}