chiark / gitweb /
fix threading bugs and arrangements
[moebius2.git] / mgraph.h
index 7f2ab4397ad747ea54e95901d0f093eb71f42d1a..2ac57c7f6e7b71e333a9190c4653481a81a4c838 100644 (file)
--- a/mgraph.h
+++ b/mgraph.h
 #define V6 6
 #define V3 3
 
+
+/* Loop constructors are macros of the form
+ *    LOOP(v,zero,n, precomp)
+ * which work much like this one:
+ */
 #define INNER(v,zero,n, precomp)  \
   for ((v)=(zero); precomp, (v)<(n); (v)++)