lemon/min_cost_arborescence.h
changeset 2630 d239741cfd44
parent 2553 bfced05fa852
equal deleted inserted replaced
11:95b3059f0a15 12:2380a89c08a4
   641         delete _arborescence;
   641         delete _arborescence;
   642       }
   642       }
   643       if (local_pred) {
   643       if (local_pred) {
   644         delete _pred;
   644         delete _pred;
   645       }
   645       }
   646       if (!_edge_order) {
   646       if (_edge_order) {
   647         delete _edge_order;
   647         delete _edge_order;
   648       }
   648       }
   649       if (_node_order) {
   649       if (_node_order) {
   650         delete _node_order;
   650         delete _node_order;
   651       }
   651       }
   652       if (!_cost_edges) {
   652       if (_cost_edges) {
   653         delete _cost_edges;
   653         delete _cost_edges;
   654       }
   654       }
   655       if (!_heap) {
   655       if (_heap) {
   656         delete _heap;
   656         delete _heap;
   657       }
   657       }
   658       if (!_heap_cross_ref) {
   658       if (_heap_cross_ref) {
   659         delete _heap_cross_ref;
   659         delete _heap_cross_ref;
   660       }
   660       }
   661     }
   661     }
   662 
   662 
   663     Edge prepare(Node node) {
   663     Edge prepare(Node node) {