view src/parallel_execution/plautogen/impl/RedBlackTree.h @ 588:78e10562b210

tweak
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Thu, 16 Jan 2020 14:44:03 +0900
parents d9c3bccaa13c
children
line wrap: on
line source

typedef struct RedBlackTree <Type, Isa> impl Tree {
  struct Node* root;
  struct Node* current; // reading node of original tree;
  struct Node* previous; // parent of reading node of original tree;
  struct Node* newNode; // writing node of new tree;
  struct Node* parent;
  struct Node* grandparent;
  struct Stack* nodeStack;
  __code findNodeNext(...);
  int result;
} RedBlackTree;