Skip to content

Commit c876074

Browse files
committed
Move rust translation
1 parent d091a7c commit c876074

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/internals/incompatibilities.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ With incompatibilities, we would note
9090

9191
This is the simplified version of the rule of resolution.
9292
For the generalization, let's write them as [boolean expressions][boolean_expression].
93-
In rust terms, "\\( \neg \\)" means "not"/`!` (\\( \neg T \\) and \\( \overline{T} \\) are different
94-
notations for the same thing), "\\( \land \\)" means "and"/`&&`, "\\( \lor \\)" means "or"/`||`.
9593

9694
\\[ \neg (T_a \land \overline{T_b}) \quad \land \quad
9795
\neg (T_b \land \overline{T_c}) \quad

src/internals/terms.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ based on those ranges is defined as follows,
5959
\neg [r_1] \land \neg [r_2] &=& \neg [r_1 \cup r_2]. \nonumber \\\\
6060
\end{eqnarray}\\]
6161

62-
And for any two terms \\(T_1\\) and \\(T_2\\), their union and intersection are related by
62+
In rust terms, "\\( \neg \\)" means "not"/`!` (\\( \neg T \\),
63+
"\\( \land \\)" means "and"/, "\\( \lor \\)" means "or"/`||`.
64+
65+
And for any two terms \\(T_1\\) and \\(T_2\\), their union and intersection are related by De Morgan's laws
6366

6467
\\[ \overline{T_1 \lor T_2} = \overline{T_1} \land \overline{T_1}. \\]
6568

0 commit comments

Comments
 (0)