src/include/fib_heap.h
changeset 485 7f461ab4af1a
parent 430 60e4627e8c74
child 491 4804c967543d
equal deleted inserted replaced
3:d4bfaed791fb 4:ab3b0a37fe03
    60     int minimum;
    60     int minimum;
    61     ItemIntMap &iimap;
    61     ItemIntMap &iimap;
    62     Compare comp;
    62     Compare comp;
    63     int num_items;
    63     int num_items;
    64     
    64     
    65     ///\todo It is use nowhere
       
    66     ///\todo It doesn't conform to the naming conventions.
       
    67   public:
    65   public:
    68     enum state_enum {
    66     enum state_enum {
    69       IN_HEAP = 0,
    67       IN_HEAP = 0,
    70       PRE_HEAP = -1,
    68       PRE_HEAP = -1,
    71       POST_HEAP = -2
    69       POST_HEAP = -2
   495   }
   493   }
   496   
   494   
   497   ///@}
   495   ///@}
   498 
   496 
   499 } //namespace hugo
   497 } //namespace hugo
   500 #endif 
   498 
       
   499 #endif //HUGO_FIB_HEAP_H
       
   500