public NotNode buildNotNode( int id, LeftTupleSource leftInput, ObjectSource rightInput, BetaConstraints binder, BuildContext context ) {
return new ReteNotNode( id, leftInput, rightInput, binder, context );
}
public ExistsNode buildExistsNode( int id, LeftTupleSource leftInput, ObjectSource rightInput, BetaConstraints binder, BuildContext context ) {
return new ReteExistsNode( id, leftInput, rightInput, binder, context );
}