You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.1 KiB

5 months ago
  1. First Conflict in Step 6: \\
  2. \begin{conflictgraph}
  3. \node[base node] (notA) {$\lnot a$};
  4. \node[base node] (notB) [below of=notA] {$\lnot b$};
  5. \node[base node] (C) [right of=notB] {$c$};
  6. \node[base node] (notE) [above right of=C] {$\lnot e$};
  7. \node[base node] (D) [above right of=notE] {$d$};
  8. \node[base node] (notD) [below right of=notE] {$\lnot d$};
  9. \node[base node] (bot) [below right of=D] {$\bot$};
  10. \path[]
  11. (notA) edge [] node {$6$} (notE)
  12. (notB) edge [] node {$2$} (C)
  13. (C) edge [] node {$6$} (notE)
  14. (notE) edge [] node {$4$} (D)
  15. (notE) edge [] node {$5$} (notD)
  16. (notD) edge [] node {} (bot)
  17. (D) edge [] node {} (bot);
  18. \end{conflictgraph}
  19. \begin{prooftree}
  20. \AxiomC{$4. \; \lnot d \lor e$}
  21. \AxiomC{$5. \; d \lor e$}
  22. \BinaryInfC{$e$}
  23. \AxiomC{$6. \; a \lor \lnot c \lor \lnot e$}
  24. \BinaryInfC{$a \lor \lnot c$}
  25. \AxiomC{$2. \; b \lor c$}
  26. \BinaryInfC{$ a \lor b$}
  27. \end{prooftree}
  28. \vspace{1cm}
  29. Second Conflict in Step 11: \\
  30. \begin{conflictgraph}
  31. \node[base node] (notA) {$\lnot a$};
  32. \node[base node] (B) [right of=notA] {$b$};
  33. \node[base node] (notD) [right of=B] {$\lnot d$};
  34. \node[base node] (E) [right of=notD] {$e$};
  35. \node[base node] (C) [below of=E] {$c$};
  36. \node[base node] (notE) [right of=C] {$\lnot e$};
  37. \node[base node] (bot) [above right of=notE] {$\bot$};
  38. \path[]
  39. (notA) edge [] node {$8$} (B)
  40. (B) edge [] node {$3$} (notD)
  41. (notD) edge [] node {$5$} (E)
  42. (notD) edge [] node {$7$} (C)
  43. (C) edge [] node {$6$} (notE)
  44. (notE) edge [] node {} (bot)
  45. (E) edge [] node {} (bot);
  46. \end{conflictgraph}
  47. \begin{prooftree}
  48. \AxiomC{$6. \; a \lor \lnot c \lor \lnot e$}
  49. \AxiomC{$7. \; \lnot b \lor c \lor d$}
  50. \BinaryInfC{$a \lor \lnot b \lor d \lor \lnot e$}
  51. \AxiomC{$5. \; d \lor e$}
  52. \BinaryInfC{$a \lor \lnot b \lor d$}
  53. \AxiomC{$3. \; \lnot b \lor \lnot d$}
  54. \BinaryInfC{$ a \lor \lnot b$}
  55. \AxiomC{$8. \; a \lor b$}
  56. \BinaryInfC{$a$}
  57. \end{prooftree}
  58. \vspace{1cm}
  59. Second Conflict in Step 16: \\
  60. \begin{conflictgraph}
  61. \node (0) {};
  62. \node[base node] (A) [right of=0] {$a$};
  63. \node[base node] (notC) [right of=A] {$\lnot c$};
  64. \node[base node] (B) [right of=notC] {$b$};
  65. \node[base node] (notD) [right of=B] {$\lnot d$};
  66. \node[base node] (D) [below of=notD] {$d$};
  67. \node[base node] (bot) [above right of=D] {$\bot$};
  68. \path[]
  69. (0) edge [] node {$9$} (A)
  70. (A) edge [] node {$1$} (notC)
  71. (notC) edge [] node {$2$} (B)
  72. (B) edge [] node {$3$} (D)
  73. (B) edge [] node {$7$} (notD)
  74. (notD) edge [] node {} (bot)
  75. (D) edge [] node {} (bot);
  76. \end{conflictgraph}
  77. \begin{prooftree}
  78. \AxiomC{$7. \; \lnot b \lor c \lor d$}
  79. \AxiomC{$3. \; \lnot b \lor \lnot d$}
  80. \BinaryInfC{$\lnot b \lor c$}
  81. \AxiomC{$2. \; b \lor c$}
  82. \BinaryInfC{$c$}
  83. \AxiomC{$1. \; \lnot a \lor \lnot c$}
  84. \BinaryInfC{$\lnot a$}
  85. \AxiomC{$9. \; a$}
  86. \BinaryInfC{$\bot$}
  87. \end{prooftree}