Как упростить эти логические выражения - PullRequest
0 голосов
/ 20 сентября 2018

Мне сказали сжать это в python в более упрощенной форме.Можно ли сделать это упорядоченным образом?

(not ((b or not c) and (not a or not c))) or (not (c or not (b and c))) or (a and not c) and (not a or (a and b and c) or (a and ((b and not c) or (not b))))

(not (a and not b) or (not c and b)) and (not b) or (not a and b and not c) or (a and not b))

1 Ответ

0 голосов
/ 20 сентября 2018

Вы можете использовать sympy для оценки и упрощения логических выражений:

(Примечание: анализатор в этом примере довольно наивен):

from sympy.logic.boolalg import to_dnf
from sympy.abc import a, b, c

def translate(expr):
    e = list(expr)
    res = [' ' for _ in range(len(e))]
    for start in range(len(e)):
        if expr[start: start+3] == 'not':
            res[start] = '~'
            res[start+1] = ''
            res[start+2] = ''
        elif expr[start: start+3] == 'and':
            res[start] = '&'
            res[start+1] = ''
            res[start+2] = ''
        else:
            if res[start] == ' ':
                res[start] = e[start]

    expr = ''.join(res)         
    e = list(expr)
    res = [' ' for _ in range(len(e))]
    for start in range(len(e)):
        if expr[start: start+2] == 'or':
            res[start] = '|'
            res[start+1] = ''
        else:
            if res[start] == ' ':
                res[start] = e[start]

    res = [elt for elt in res if elt != ' ' or elt != '']
    return ''.join(res)


exp1 = '(not ((b or not c) and (not a or not c))) or (not (c or not (b and c))) or (a and not c) and (not a or (a and b and c) or (a and ((b and not c) or (not b))))'
exp2 = '(not (a and not b) or (not c and b)) and (not b) or (not a and b and not c) or (a and not b)'


print('exp1:', '\n', eval(translate(exp1)), '\n', to_dnf(eval(translate(exp1)), simplify=True))
print('exp2:', '\n', eval(translate(exp2)), '\n', to_dnf(eval(translate(exp2)), simplify=True))

выводит упрощенные выражения

exp1: 
 ~(c | ~(b & c)) | ~((b | ~c) & (~a | ~c)) | (a & ~c & (~a | (a & b & c) | (a & (~b | (b & ~c))))) 
 a | (c & ~b)
exp2: 
 (a & ~b) | (b & ~a & ~c) | (~b & ((b & ~c) | ~(a & ~b))) 
 ~b | (~a & ~c)

Проверка правильности:

для каждого ввода оцените таблицы истинности как исходного, так и упрощенного выражений.

def evaluate(a, b, c):
    exp1 = (not ((b or not c) and (not a or not c))) or (not (c or not (b and c))) or (a and not c) and (not a or (a and b and c) or (a and ((b and not c) or (not b))))
    exp2 = (not (a and not b) or (not c and b)) and (not b) or (not a and b and not c) or (a and not b)
    return exp1, exp2

def evaluate2(a, b, c):
    exp1 = a or (c and not b)
    exp2 = not b or (not a and not c)
    return exp1, exp2

values = [(1, 1, 1), (1, 1, 0), (1, 0, 1), (0, 1, 1), (1, 0, 0), (0, 1, 0), (0, 0, 1), (0, 0, 0)]
for vals in values:
    print(f'{vals}: {evaluate(*vals)}, {evaluate2(*vals)}')

Вывод таблиц истинности:

(1, 1, 1): (True, False), (1, False)
(1, 1, 0): (True, False), (1, False)
(1, 0, 1): (True, True), (1, True)
(0, 1, 1): (0, 0), (False, False)
(1, 0, 0): (True, True), (1, True)
(0, 1, 0): (0, True), (0, True)
(0, 0, 1): (True, True), (True, True)
(0, 0, 0): (0, True), (0, True)
...