示例#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)