示例#1
0
文件: curser.py 项目: cprudhom/pycsp3
 def __or__(self, other):
     return object.__or__(self, other) if None in {self, other} else Node.disjunction(self, other)
示例#2
0
def disjunction(*args):
    return Node.disjunction(*args)