Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion document/core/exec/instructions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Where the underlying operators are non-deterministic, because they may return on
(t\K{.}\CONST~c_1)~(t\K{.}\CONST~c_2)~t\K{.}\binop &\stepto& (t\K{.}\CONST~c)
& (\iff c \in \binop_t(c_1,c_2)) \\
(t\K{.}\CONST~c_1)~(t\K{.}\CONST~c_2)~t\K{.}\binop &\stepto& \TRAP
& (\iff \binop_{t}(c_1,c2) = \{\})
& (\iff \binop_{t}(c_1,c_2) = \{\})
\end{array}


Expand Down
14 changes: 7 additions & 7 deletions document/core/exec/numerics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:

.. math::
\begin{array}{@{}lcll}
\iandnot_N(i_1, i_2) &=& \iand_N(i_1, \inot_N(i2))
\iandnot_N(i_1, i_2) &=& \iand_N(i_1, \inot_N(i_2))
\end{array}

.. _op-ior:
Expand Down Expand Up @@ -793,8 +793,8 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:

.. math::
\begin{array}{@{}lcll}
\iminu_N(i_1, i_2) &=& i_1 & (\iff \ilts_N(i_1, i_2) = 1)\\
\iminu_N(i_1, i_2) &=& i_2 & (\otherwise)
\imins_N(i_1, i_2) &=& i_1 & (\iff \ilts_N(i_1, i_2) = 1)\\
\imins_N(i_1, i_2) &=& i_2 & (\otherwise)
\end{array}


Expand All @@ -807,8 +807,8 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:

.. math::
\begin{array}{@{}lcll}
\iminu_N(i_1, i_2) &=& i_1 & (\iff \igtu_N(i_1, i_2) = 1)\\
\iminu_N(i_1, i_2) &=& i_2 & (\otherwise)
\imaxu_N(i_1, i_2) &=& i_1 & (\iff \igtu_N(i_1, i_2) = 1)\\
\imaxu_N(i_1, i_2) &=& i_2 & (\otherwise)
\end{array}


Expand All @@ -821,8 +821,8 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:

.. math::
\begin{array}{@{}lcll}
\iminu_N(i_1, i_2) &=& i_1 & (\iff \igts_N(i_1, i_2) = 1)\\
\iminu_N(i_1, i_2) &=& i_2 & (\otherwise)
\imaxs_N(i_1, i_2) &=& i_1 & (\iff \igts_N(i_1, i_2) = 1)\\
\imaxs_N(i_1, i_2) &=& i_2 & (\otherwise)
\end{array}


Expand Down