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