コード例 #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
ファイル: functions.py プロジェクト: cprudhom/pycsp3
def disjunction(*args):
    return Node.disjunction(*args)