Category:CafeOBJ: Difference between revisions

Content added Content deleted
Line 57: Line 57:
vars N N' : Nat
vars N N' : Nat
-- The program is in the form of a single conditional equation, which will swap N and N' if N is larger or equal to N'.
-- A very short sorting program using one transition equation in POA logic, which is a type of rewrite logic.
-- The program is in the form of a condition equation, which will swap N and N' if N is larger or equal to N'.
-- There is no need for an intermediate variable to do the swap.
-- There is no need for an intermediate variable to do the swap.
ceq[swap] : (N N') = (N' N) if N' <= N .
ceq[swap] : (N N') = (N' N) if N' <= N .