C# 클래스 PclUnit.Constraints.Pieces.BinaryOperator

Abstract base class for all binary operators
상속: ConstraintOperator
파일 보기 프로젝트 열기: jbtule/PclUnit

공개 메소드들

메소드 설명
ApplyOperator ( Constraint left, Constraint right ) : Constraint

Abstract method that produces a constraint by applying the operator to its left and right constraint arguments.

Reduce ( ConstraintBuilder stack ) : void

Reduce produces a constraint from the operator and any arguments. It takes the arguments from the constraint stack and pushes the resulting constraint on it.

메소드 상세

ApplyOperator() 공개 추상적인 메소드

Abstract method that produces a constraint by applying the operator to its left and right constraint arguments.
public abstract ApplyOperator ( Constraint left, Constraint right ) : Constraint
left Constraint
right Constraint
리턴 Constraint

Reduce() 공개 메소드

Reduce produces a constraint from the operator and any arguments. It takes the arguments from the constraint stack and pushes the resulting constraint on it.
public Reduce ( ConstraintBuilder stack ) : void
stack ConstraintBuilder
리턴 void