예제 #1
0
파일: curser.py 프로젝트: cprudhom/pycsp3
 def __and__(self, other):
     return object.__and__(self, other) if None in {self, other} else Node.conjunction(self, other)
예제 #2
0
def conjunction(*args):
    return Node.conjunction(*args)