From: Dana Jansens Date: Mon, 2 Nov 2009 21:13:52 +0000 (-0500) Subject: The maximum in-degree of a node is now 3: its parent, and each of its children. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=5a028fb759046ca9bce5fdccd8d6caaceec91711;p=dana%2Fcg-glib.git The maximum in-degree of a node is now 3: its parent, and each of its children. --- diff --git a/glib/gtree.c b/glib/gtree.c index 3a6daf89..368fba95 100644 --- a/glib/gtree.c +++ b/glib/gtree.c @@ -36,7 +36,7 @@ #undef G_TREE_DEBUG #define MAX_OUT_DEGREE 3 -#define MAX_IN_DEGREE 5 +#define MAX_IN_DEGREE 3 typedef struct _GTreeRootVersion GTreeRootVersion; typedef struct _GTreeNodeVersion GTreeNodeVersion;