readme
This commit is contained in:
parent
d781334419
commit
c344be1bea
2 changed files with 30 additions and 0 deletions
28
readme.md
Normal file
28
readme.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
Statement logic !!!
|
||||
|
||||
# Compile it
|
||||
|
||||
```sh
|
||||
make
|
||||
```
|
||||
|
||||
# Usage
|
||||
|
||||
```sh
|
||||
echo '((p->q)<->(!q->!p))' | ./logic
|
||||
```
|
||||
|
||||
## Output
|
||||
|
||||
```
|
||||
Iff (Implies (Atom "p") (Atom "q")) (Implies (Not (Atom "q")) (Not (Atom "p")))
|
||||
Tautology
|
||||
\begin{tabular}{cc||cccccc|c|cccccccc}
|
||||
$p$ & $q$ & $($ & $($ & $p$ & $\to $ & $q$ & $)$ & $\leftrightarrow $ & $($ & $\neg $ & $q$ & $\to $ & $\neg $ & $p$ & $)$ & $)$ \\
|
||||
\hline
|
||||
0 & 0 & & & 0 & 1 & 0 & & \textbf 1 & & 1 & 0 & 1 & 1 & 0 & & \\
|
||||
0 & 1 & & & 1 & 0 & 0 & & \textbf 1 & & 1 & 0 & 0 & 0 & 1 & & \\
|
||||
1 & 0 & & & 0 & 1 & 1 & & \textbf 1 & & 0 & 1 & 1 & 1 & 0 & & \\
|
||||
1 & 1 & & & 1 & 1 & 1 & & \textbf 1 & & 0 & 1 & 1 & 0 & 1 & & \\
|
||||
\end{tabular}
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue