コードに対して間違った答えが返ってきました
n は変数の数で、formula は節を含むリストです
リスト 'formula' でエンコードされた 'n' 個の変数と節を持つ SAT インスタンスを指定すると、インスタンスが満足できる場合は 'satisfiable' を返し、それ以外の場合は 'unsatisfiable' を返します。'formula' の各要素は句を表し、整数のリストです。ここで、整数 i はリテラル Xi が句に存在することを示し、整数 -i はリテラル ~Xi が句に存在することを示します。たとえば、節「X1 v ~X11 v X7」はリスト [1, -11, 7] で表されます。
import itertools
n = 4
formula = [[1, -2, 3], [-1, 3], [-3], [2, 3]]
booleanValues = [True,False] * n
allorderings = set(itertools.permutations(booleanValues, n)) #create possible combinations of variables that can check if formula is satisfiable or not
print(allorderings)
for potential in allorderings:
l = [] #boolean value for each variable / different combination for each iteration
for i in potential:
l.append(i)
#possible = [False]*n
aclause = []
for clause in formula:
something = []
#clause is [1,2,3]
for item in clause:
if item > 0:
something.append(l[item-1])
else:
item = item * -1
x = l[item-1]
if x == True:
x = False
else:
x = True
something.append(x)
counter = 0
cal = False
for thingsinclause in something:
if counter == 0:
cal = thingsinclause
counter = counter + 1
else:
cal = cal and thingsinclause
counter = counter + 1
aclause.append(cal)
counter2 = 0
formcheck = False
for checkformula in aclause:
if counter2 == 0:
formcheck = checkformula
counter2 = counter2 + 1
else:
formcheck = formcheck or checkformula
print("this combination works", checkformula)