本文整理汇总了Python中cnfformula.cnf.CNF.add_strictly_greater_than方法的典型用法代码示例。如果您正苦于以下问题:Python CNF.add_strictly_greater_than方法的具体用法?Python CNF.add_strictly_greater_than怎么用?Python CNF.add_strictly_greater_than使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cnfformula.cnf.CNF
的用法示例。
在下文中一共展示了CNF.add_strictly_greater_than方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_one_gt
# 需要导入模块: from cnfformula.cnf import CNF [as 别名]
# 或者: from cnfformula.cnf.CNF import add_strictly_greater_than [as 别名]
def test_one_gt(self) :
opb="""\
* #variable= 5 #constraint= 1
*
+1 x1 +1 x2 +1 x3 +1 x4 +1 x5 >= 3;
"""
F=CNF()
F.add_strictly_greater_than(["a","b","c","d","e"],2)
self.assertCnfEqualsOPB(F,opb)