本文整理汇总了Python中cnfformula.cnf.CNF.auto_add_variables方法的典型用法代码示例。如果您正苦于以下问题:Python CNF.auto_add_variables方法的具体用法?Python CNF.auto_add_variables怎么用?Python CNF.auto_add_variables使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cnfformula.cnf.CNF
的用法示例。
在下文中一共展示了CNF.auto_add_variables方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_auto_add_variables
# 需要导入模块: from cnfformula.cnf import CNF [as 别名]
# 或者: from cnfformula.cnf.CNF import auto_add_variables [as 别名]
def test_auto_add_variables(self):
F=CNF()
F.auto_add_variables = True
F.add_variable("S")
F.add_variable("U")
self.assertTrue(len(list(F.variables()))==2)
F.add_clause([(True,"S"),(False,"T")])
self.assertTrue(len(list(F.variables()))==3)
F.auto_add_variables = False
F.add_clause([(True,"T"),(False,"U")])
self.assertRaises(ValueError, F.add_clause,
[(True,"T"),(False,"V")])
示例2: test_opposite_literals
# 需要导入模块: from cnfformula.cnf import CNF [as 别名]
# 或者: from cnfformula.cnf.CNF import auto_add_variables [as 别名]
def test_opposite_literals(self):
F=CNF()
F.auto_add_variables = True
F.allow_opposite_literals = True
F.add_clause([(True,"S"),(False,"T"),(False,"S")])
F.allow_opposite_literals = False
self.assertRaises(ValueError, F.add_clause,
[(True,"T"),(True,"V"),(False,"T")])