Macaulay2 Engine
Loading...
Searching...
No Matches

◆ SWAP

#define SWAP ( a,
b )
Value:
temp = (a); \
(a) = (b); \
(b) = temp;

Definition at line 211 of file monsort.hpp.

211#define SWAP(a, b) \
212 temp = (a); \
213 (a) = (b); \
214 (b) = temp;

Referenced by QuickSorter< Sorter >::sortC().