]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change: explain inheriting "dirty" offsets
authorMatt Armstrong <matt@rfc20.org>
Sat, 8 Oct 2022 16:15:26 +0000 (09:15 -0700)
committerMatt Armstrong <matt@rfc20.org>
Sun, 9 Oct 2022 03:37:28 +0000 (20:37 -0700)
; * src/itree.c (interval_generator_next): explain why the code
handles inheriting offsets from dirty nodes.

src/itree.c

index de16af5b0c2ff686c708613171e7eb850b3ad32c..05851007f5a7244086c98d38cc88207253492dc4 100644 (file)
@@ -1086,8 +1086,17 @@ interval_tree_inherit_offset (uintmax_t otick, struct interval_node *node)
         node->right->offset += node->offset;
       node->offset = 0;
     }
-  /* FIXME: I wonder when/why this condition can be false, and more generally
-     why we'd want to propagate offsets that may not be fully up-to-date.  */
+  /* FIXME: I wonder when/why this condition can be false, and more
+     generally why we'd want to propagate offsets that may not be
+     fully up-to-date. --stef
+
+     Offsets can be inherited from dirty nodes (with out of date
+     otick) during insert and remove.  Offsets aren't inherited
+     downward from the root for these operations so rotations are
+     performed on potentially "dirty" nodes.  We could fix this by
+     always inheriting offsets downward from the root for every insert
+     and remove.  --matt
+  */
   if (node->parent == ITREE_NULL || node->parent->otick == otick)
     node->otick = otick;
 }