src/lemon/list_graph.h
author klao
Thu, 09 Dec 2004 15:30:12 +0000
changeset 1034 be6ee857b72d
parent 1012 2bfbe3f4307c
child 1035 f2a3426e64e6
permissions -rw-r--r--
Undir list and smart graph
alpar@948
     1
/* -*- C++ -*-
alpar@948
     2
 * src/lemon/list_graph.h - Part of LEMON, a generic C++ optimization library
alpar@948
     3
 *
alpar@948
     4
 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@948
     5
 * (Egervary Combinatorial Optimization Research Group, EGRES).
alpar@948
     6
 *
alpar@948
     7
 * Permission to use, modify and distribute this software is granted
alpar@948
     8
 * provided that this copyright notice appears in all copies. For
alpar@948
     9
 * precise terms see the accompanying LICENSE file.
alpar@948
    10
 *
alpar@948
    11
 * This software is provided "AS IS" with no warranty of any kind,
alpar@948
    12
 * express or implied, and with no claim as to its suitability for any
alpar@948
    13
 * purpose.
alpar@948
    14
 *
alpar@948
    15
 */
alpar@395
    16
alpar@921
    17
#ifndef LEMON_LIST_GRAPH_H
alpar@921
    18
#define LEMON_LIST_GRAPH_H
alpar@395
    19
alpar@948
    20
///\ingroup graphs
alpar@948
    21
///\file
alpar@948
    22
///\brief ListGraph, SymListGraph, NodeSet and EdgeSet classes.
alpar@948
    23
klao@946
    24
#include <lemon/erasable_graph_extender.h>
klao@946
    25
#include <lemon/clearable_graph_extender.h>
klao@946
    26
#include <lemon/extendable_graph_extender.h>
klao@1034
    27
#include <lemon/iterable_graph_extender.h>
klao@1034
    28
#include <lemon/alteration_observer_registry.h>
klao@1034
    29
#include <lemon/default_map.h>
alpar@395
    30
klao@1034
    31
#include <lemon/undir_graph_extender.h>
deba@782
    32
alpar@1011
    33
#include <list>
deba@782
    34
alpar@921
    35
namespace lemon {
alpar@395
    36
klao@946
    37
  class ListGraphBase {
alpar@406
    38
alpar@949
    39
  protected:
klao@946
    40
    struct NodeT {
alpar@397
    41
      int first_in,first_out;
alpar@397
    42
      int prev, next;
alpar@395
    43
    };
klao@946
    44
 
klao@946
    45
    struct EdgeT {
alpar@986
    46
      int target, source;
alpar@397
    47
      int prev_in, prev_out;
alpar@397
    48
      int next_in, next_out;
alpar@395
    49
    };
alpar@395
    50
alpar@395
    51
    std::vector<NodeT> nodes;
klao@946
    52
alpar@397
    53
    int first_node;
klao@946
    54
alpar@397
    55
    int first_free_node;
klao@946
    56
alpar@395
    57
    std::vector<EdgeT> edges;
klao@946
    58
alpar@397
    59
    int first_free_edge;
alpar@395
    60
    
deba@782
    61
  public:
alpar@395
    62
    
klao@946
    63
    typedef ListGraphBase Graph;
alpar@397
    64
    
klao@946
    65
    class Node {
marci@975
    66
      friend class ListGraphBase;
klao@946
    67
    protected:
alpar@395
    68
klao@946
    69
      int id;
klao@946
    70
      Node(int pid) { id = pid;}
alpar@395
    71
klao@946
    72
    public:
klao@946
    73
      Node() {}
klao@946
    74
      Node (Invalid) { id = -1; }
klao@946
    75
      bool operator==(const Node& node) const {return id == node.id;}
klao@946
    76
      bool operator!=(const Node& node) const {return id != node.id;}
klao@946
    77
      bool operator<(const Node& node) const {return id < node.id;}
klao@946
    78
    };
deba@782
    79
klao@946
    80
    class Edge {
marci@975
    81
      friend class ListGraphBase;
klao@946
    82
    protected:
deba@782
    83
klao@946
    84
      int id;
klao@946
    85
      Edge(int pid) { id = pid;}
alpar@395
    86
klao@946
    87
    public:
klao@946
    88
      Edge() {}
klao@946
    89
      Edge (Invalid) { id = -1; }
klao@946
    90
      bool operator==(const Edge& edge) const {return id == edge.id;}
klao@946
    91
      bool operator!=(const Edge& edge) const {return id != edge.id;}
klao@946
    92
      bool operator<(const Edge& edge) const {return id < edge.id;}
klao@946
    93
    };
klao@946
    94
klao@946
    95
klao@946
    96
klao@946
    97
    ListGraphBase()
deba@782
    98
      : nodes(), first_node(-1),
deba@782
    99
	first_free_node(-1), edges(), first_free_edge(-1) {}
deba@782
   100
alpar@395
   101
    
alpar@813
   102
    /// Maximum node ID.
alpar@813
   103
    
alpar@813
   104
    /// Maximum node ID.
alpar@813
   105
    ///\sa id(Node)
deba@980
   106
    int maxId(Node = INVALID) const { return nodes.size()-1; } 
klao@946
   107
alpar@813
   108
    /// Maximum edge ID.
alpar@813
   109
    
alpar@813
   110
    /// Maximum edge ID.
alpar@813
   111
    ///\sa id(Edge)
deba@980
   112
    int maxId(Edge = INVALID) const { return edges.size()-1; }
alpar@395
   113
alpar@986
   114
    Node source(Edge e) const { return edges[e.id].source; }
alpar@986
   115
    Node target(Edge e) const { return edges[e.id].target; }
alpar@395
   116
alpar@395
   117
klao@946
   118
    void first(Node& node) const { 
klao@946
   119
      node.id = first_node;
klao@946
   120
    }
klao@946
   121
klao@946
   122
    void next(Node& node) const {
klao@946
   123
      node.id = nodes[node.id].next;
klao@946
   124
    }
klao@946
   125
klao@946
   126
klao@946
   127
    void first(Edge& e) const { 
klao@946
   128
      int n;
klao@946
   129
      for(n = first_node; 
klao@946
   130
	  n!=-1 && nodes[n].first_in == -1; 
klao@946
   131
	  n = nodes[n].next);
klao@946
   132
      e.id = (n == -1) ? -1 : nodes[n].first_in;
klao@946
   133
    }
klao@946
   134
klao@946
   135
    void next(Edge& edge) const {
klao@946
   136
      if (edges[edge.id].next_in != -1) {
klao@946
   137
	edge.id = edges[edge.id].next_in;
klao@946
   138
      } else {
klao@946
   139
	int n;
alpar@986
   140
	for(n = nodes[edges[edge.id].target].next;
klao@946
   141
	  n!=-1 && nodes[n].first_in == -1; 
klao@946
   142
	  n = nodes[n].next);
klao@946
   143
	edge.id = (n == -1) ? -1 : nodes[n].first_in;
klao@946
   144
      }      
klao@946
   145
    }
klao@946
   146
klao@946
   147
    void firstOut(Edge &e, const Node& v) const {
klao@946
   148
      e.id = nodes[v.id].first_out;
klao@946
   149
    }
klao@946
   150
    void nextOut(Edge &e) const {
klao@946
   151
      e.id=edges[e.id].next_out;
klao@946
   152
    }
klao@946
   153
klao@946
   154
    void firstIn(Edge &e, const Node& v) const {
klao@946
   155
      e.id = nodes[v.id].first_in;
klao@946
   156
    }
klao@946
   157
    void nextIn(Edge &e) const {
klao@946
   158
      e.id=edges[e.id].next_in;
klao@946
   159
    }
klao@946
   160
alpar@813
   161
    
klao@946
   162
    static int id(Node v) { return v.id; }
klao@946
   163
    static int id(Edge e) { return e.id; }
alpar@395
   164
alpar@397
   165
    /// Adds a new node to the graph.
alpar@397
   166
alpar@813
   167
    /// \warning It adds the new node to the front of the list.
alpar@397
   168
    /// (i.e. the lastly added node becomes the first.)
klao@946
   169
    Node addNode() {     
alpar@397
   170
      int n;
alpar@397
   171
      
klao@946
   172
      if(first_free_node==-1) {
klao@946
   173
	n = nodes.size();
klao@946
   174
	nodes.push_back(NodeT());
klao@946
   175
      } else {
alpar@397
   176
	n = first_free_node;
alpar@397
   177
	first_free_node = nodes[n].next;
alpar@397
   178
      }
alpar@397
   179
      
alpar@397
   180
      nodes[n].next = first_node;
alpar@397
   181
      if(first_node != -1) nodes[first_node].prev = n;
alpar@397
   182
      first_node = n;
alpar@397
   183
      nodes[n].prev = -1;
alpar@397
   184
      
alpar@397
   185
      nodes[n].first_in = nodes[n].first_out = -1;
alpar@397
   186
      
klao@946
   187
      return Node(n);
alpar@395
   188
    }
alpar@395
   189
    
alpar@395
   190
    Edge addEdge(Node u, Node v) {
klao@946
   191
      int n;      
klao@946
   192
klao@946
   193
      if (first_free_edge == -1) {
klao@946
   194
	n = edges.size();
klao@946
   195
	edges.push_back(EdgeT());
klao@946
   196
      } else {
alpar@397
   197
	n = first_free_edge;
alpar@397
   198
	first_free_edge = edges[n].next_in;
alpar@397
   199
      }
alpar@397
   200
      
alpar@986
   201
      edges[n].source = u.id; 
alpar@986
   202
      edges[n].target = v.id;
alpar@395
   203
klao@946
   204
      edges[n].next_out = nodes[u.id].first_out;
klao@946
   205
      if(nodes[u.id].first_out != -1) {
klao@946
   206
	edges[nodes[u.id].first_out].prev_out = n;
klao@946
   207
      }
klao@946
   208
      
klao@946
   209
      edges[n].next_in = nodes[v.id].first_in;
klao@946
   210
      if(nodes[v.id].first_in != -1) {
klao@946
   211
	edges[nodes[v.id].first_in].prev_in = n;
klao@946
   212
      }
klao@946
   213
      
alpar@397
   214
      edges[n].prev_in = edges[n].prev_out = -1;
alpar@397
   215
	
klao@946
   216
      nodes[u.id].first_out = nodes[v.id].first_in = n;
alpar@397
   217
klao@946
   218
      return Edge(n);
alpar@395
   219
    }
alpar@774
   220
    
klao@946
   221
    void erase(const Node& node) {
klao@946
   222
      int n = node.id;
klao@946
   223
      
klao@946
   224
      if(nodes[n].next != -1) {
klao@946
   225
	nodes[nodes[n].next].prev = nodes[n].prev;
klao@946
   226
      }
klao@946
   227
      
klao@946
   228
      if(nodes[n].prev != -1) {
klao@946
   229
	nodes[nodes[n].prev].next = nodes[n].next;
klao@946
   230
      } else {
klao@946
   231
	first_node = nodes[n].next;
klao@946
   232
      }
klao@946
   233
      
klao@946
   234
      nodes[n].next = first_free_node;
klao@946
   235
      first_free_node = n;
alpar@395
   236
alpar@774
   237
    }
alpar@774
   238
    
klao@946
   239
    void erase(const Edge& edge) {
klao@946
   240
      int n = edge.id;
alpar@397
   241
      
klao@946
   242
      if(edges[n].next_in!=-1) {
alpar@397
   243
	edges[edges[n].next_in].prev_in = edges[n].prev_in;
klao@946
   244
      }
klao@946
   245
klao@946
   246
      if(edges[n].prev_in!=-1) {
alpar@397
   247
	edges[edges[n].prev_in].next_in = edges[n].next_in;
klao@946
   248
      } else {
alpar@986
   249
	nodes[edges[n].target].first_in = edges[n].next_in;
klao@946
   250
      }
klao@946
   251
alpar@397
   252
      
klao@946
   253
      if(edges[n].next_out!=-1) {
alpar@397
   254
	edges[edges[n].next_out].prev_out = edges[n].prev_out;
klao@946
   255
      } 
klao@946
   256
klao@946
   257
      if(edges[n].prev_out!=-1) {
alpar@397
   258
	edges[edges[n].prev_out].next_out = edges[n].next_out;
klao@946
   259
      } else {
alpar@986
   260
	nodes[edges[n].source].first_out = edges[n].next_out;
klao@946
   261
      }
alpar@397
   262
      
alpar@397
   263
      edges[n].next_in = first_free_edge;
alpar@695
   264
      first_free_edge = n;      
alpar@397
   265
alpar@397
   266
    }
alpar@397
   267
alpar@397
   268
    void clear() {
deba@782
   269
      edges.clear();
deba@782
   270
      nodes.clear();
klao@946
   271
      first_node = first_free_node = first_free_edge = -1;
deba@937
   272
    }
deba@937
   273
alpar@949
   274
  protected:
alpar@986
   275
    void _moveTarget(Edge e, Node n) 
alpar@949
   276
    {
alpar@949
   277
      if(edges[e.id].next_in != -1)
alpar@949
   278
	edges[edges[e.id].next_in].prev_in = edges[e.id].prev_in;
alpar@949
   279
      if(edges[e.id].prev_in != -1)
alpar@949
   280
	edges[edges[e.id].prev_in].next_in = edges[e.id].next_in;
alpar@986
   281
      else nodes[edges[e.id].target].first_in = edges[e.id].next_in;
alpar@986
   282
      edges[e.id].target = n.id;
alpar@949
   283
      edges[e.id].prev_in = -1;
alpar@949
   284
      edges[e.id].next_in = nodes[n.id].first_in;
alpar@949
   285
      nodes[n.id].first_in = e.id;
alpar@949
   286
    }
alpar@986
   287
    void _moveSource(Edge e, Node n) 
alpar@949
   288
    {
alpar@949
   289
      if(edges[e.id].next_out != -1)
alpar@949
   290
	edges[edges[e.id].next_out].prev_out = edges[e.id].prev_out;
alpar@949
   291
      if(edges[e.id].prev_out != -1)
alpar@949
   292
	edges[edges[e.id].prev_out].next_out = edges[e.id].next_out;
alpar@986
   293
      else nodes[edges[e.id].source].first_out = edges[e.id].next_out;
alpar@986
   294
      edges[e.id].source = n.id;
alpar@949
   295
      edges[e.id].prev_out = -1;
alpar@949
   296
      edges[e.id].next_out = nodes[n.id].first_out;
alpar@949
   297
      nodes[n.id].first_out = e.id;
alpar@949
   298
    }
alpar@949
   299
alpar@919
   300
  };
deba@909
   301
klao@946
   302
  typedef AlterableGraphExtender<ListGraphBase> AlterableListGraphBase;
klao@946
   303
  typedef IterableGraphExtender<AlterableListGraphBase> IterableListGraphBase;
deba@980
   304
  typedef DefaultMappableGraphExtender<IterableListGraphBase> MappableListGraphBase;
klao@946
   305
  typedef ExtendableGraphExtender<MappableListGraphBase> ExtendableListGraphBase;
klao@946
   306
  typedef ClearableGraphExtender<ExtendableListGraphBase> ClearableListGraphBase;
klao@946
   307
  typedef ErasableGraphExtender<ClearableListGraphBase> ErasableListGraphBase;
alpar@400
   308
alpar@948
   309
/// \addtogroup graphs
alpar@948
   310
/// @{
alpar@400
   311
alpar@948
   312
  ///A list graph class.
alpar@400
   313
alpar@948
   314
  ///This is a simple and fast erasable graph implementation.
alpar@948
   315
  ///
alpar@1010
   316
  ///It addition that it conforms to the
alpar@1010
   317
  ///\ref concept::ErasableGraph "ErasableGraph" concept,
alpar@1010
   318
  ///it also provides several additional useful extra functionalities.
klao@959
   319
  ///\sa concept::ErasableGraph.
deba@782
   320
alpar@948
   321
  class ListGraph : public ErasableListGraphBase 
alpar@948
   322
  {
alpar@948
   323
  public:
alpar@986
   324
    /// Moves the target of \c e to \c n
alpar@948
   325
alpar@986
   326
    /// Moves the target of \c e to \c n
alpar@948
   327
    ///
alpar@1010
   328
    ///\note The <tt>Edge</tt>'s and <tt>OutEdge</tt>'s
alpar@1010
   329
    ///referencing the moved edge remain
alpar@1010
   330
    ///valid. However <tt>InEdge</tt>'s are invalidated.
alpar@986
   331
    void moveTarget(Edge e, Node n) { _moveTarget(e,n); }
alpar@986
   332
    /// Moves the source of \c e to \c n
alpar@948
   333
alpar@986
   334
    /// Moves the source of \c e to \c n
alpar@948
   335
    ///
alpar@1010
   336
    ///\note The <tt>Edge</tt>'s and <tt>InEdge</tt>'s
alpar@1010
   337
    ///referencing the moved edge remain
alpar@1010
   338
    ///valid. However <tt>OutEdge</tt>'s are invalidated.
alpar@986
   339
    void moveSource(Edge e, Node n) { _moveSource(e,n); }
alpar@949
   340
alpar@1010
   341
    /// Invert the direction of an edge.
alpar@1010
   342
alpar@1010
   343
    ///\note The <tt>Edge</tt>'s
alpar@1010
   344
    ///referencing the moved edge remain
alpar@1010
   345
    ///valid. However <tt>OutEdge</tt>'s  and <tt>InEdge</tt>'s are invalidated.
alpar@1010
   346
    void reverseEdge(Edge e) {
alpar@1010
   347
      Node t=target(e);
alpar@1010
   348
      _moveTarget(e,source(e));
alpar@1010
   349
      _moveSource(e,t);
alpar@1010
   350
    }
alpar@1010
   351
alpar@1010
   352
    ///Using this it possible to avoid the superfluous memory allocation.
alpar@1010
   353
alpar@949
   354
    ///Using this it possible to avoid the superfluous memory allocation.
alpar@949
   355
    ///\todo more docs...
alpar@949
   356
    void reserveEdge(int n) { edges.reserve(n); };
alpar@1010
   357
alpar@1010
   358
    ///Contract two nodes.
alpar@1010
   359
alpar@1010
   360
    ///This function contracts two nodes.
alpar@1010
   361
    ///
alpar@1010
   362
    ///Node \p b will be removed but instead of deleting
alpar@1010
   363
    ///its neighboring edges, they will be joined to \p a.
alpar@1010
   364
    ///The last parameter \p r controls whether to remove loops. \c true
alpar@1010
   365
    ///means that loops will be removed.
alpar@1010
   366
    ///
alpar@1010
   367
    ///\note The <tt>Edge</tt>s
alpar@1010
   368
    ///referencing the moved edge remain
alpar@1010
   369
    ///valid. However <tt>InEdge</tt>'s and <tt>OutEdge</tt>'s
alpar@1010
   370
    ///may be invalidated.
alpar@1010
   371
    void contract(Node a,Node b,bool r=true) 
alpar@1010
   372
    {
alpar@1010
   373
      for(OutEdgeIt e(*this,b);e!=INVALID;) {
alpar@1010
   374
	OutEdgeIt f=e;
alpar@1010
   375
	++f;
alpar@1010
   376
	if(r && target(e)==a) erase(e);
alpar@1010
   377
	else moveSource(e,b);
alpar@1010
   378
	e=f;
alpar@1010
   379
      }
alpar@1010
   380
      for(InEdgeIt e(*this,b);e!=INVALID;) {
alpar@1010
   381
	InEdgeIt f=e;
alpar@1010
   382
	++f;
alpar@1010
   383
	if(r && source(e)==a) erase(e);
alpar@1010
   384
	else moveTarget(e,b);
alpar@1010
   385
	e=f;
alpar@1010
   386
      }
alpar@1010
   387
      erase(b);
alpar@1010
   388
    }
alpar@1011
   389
alpar@1011
   390
alpar@1011
   391
    ///Class to make a snapshot of the graph and to restrore to it later.
alpar@1011
   392
alpar@1011
   393
    ///Class to make a snapshot of the graph and to restrore to it later.
alpar@1011
   394
    ///
alpar@1011
   395
    ///The newly added nodes and edges can be removed using the
alpar@1011
   396
    ///restore() function.
alpar@1011
   397
    ///
alpar@1011
   398
    ///\warning Edge and node deletions cannot be restored.
alpar@1011
   399
    ///\warning SnapShots cannot be nested.
alpar@1011
   400
    ///\ingroup graphs
alpar@1012
   401
    class SnapShot : protected AlterationObserverRegistry<Node>::ObserverBase,
alpar@1012
   402
		     protected AlterationObserverRegistry<Edge>::ObserverBase
alpar@1011
   403
    {
alpar@1011
   404
      protected:
alpar@1011
   405
      
alpar@1011
   406
      ListGraph *g;
alpar@1011
   407
      std::list<Node> added_nodes;
alpar@1011
   408
      std::list<Edge> added_edges;
alpar@1011
   409
      
alpar@1011
   410
      bool active;
alpar@1011
   411
      virtual void add(const Node& n) {
alpar@1011
   412
	added_nodes.push_back(n);
alpar@1011
   413
      };
alpar@1011
   414
      ///\bug Exception...
alpar@1011
   415
      ///
alpar@1011
   416
      virtual void erase(const Node&) 
alpar@1011
   417
      {
alpar@1011
   418
	exit(1);
alpar@1011
   419
      }
alpar@1011
   420
      virtual void add(const Edge& n) {
alpar@1011
   421
	added_edges.push_back(n);
alpar@1011
   422
      };
alpar@1011
   423
      ///\bug Exception...
alpar@1011
   424
      ///
alpar@1011
   425
      virtual void erase(const Edge&) 
alpar@1011
   426
      {
alpar@1011
   427
	exit(1);
alpar@1011
   428
      }
alpar@1011
   429
alpar@1011
   430
      void regist(ListGraph &_g) {
alpar@1011
   431
	g=&_g;
alpar@1011
   432
	AlterationObserverRegistry<Node>::ObserverBase::
alpar@1011
   433
	  attach(g->node_observers);
alpar@1011
   434
	AlterationObserverRegistry<Edge>::ObserverBase::
alpar@1011
   435
	  attach(g->edge_observers);
alpar@1011
   436
      }
alpar@1011
   437
            
alpar@1011
   438
      void deregist() {
alpar@1011
   439
	AlterationObserverRegistry<Node>::ObserverBase::
alpar@1011
   440
	  detach();
alpar@1011
   441
	AlterationObserverRegistry<Edge>::ObserverBase::
alpar@1011
   442
	  detach();
alpar@1011
   443
	g=0;
alpar@1011
   444
      }
alpar@1011
   445
            
alpar@1011
   446
    public:
alpar@1011
   447
      ///Default constructur.
alpar@1011
   448
      
alpar@1011
   449
      ///Default constructur.
alpar@1011
   450
      ///To actually make a snapshot you must call save().
alpar@1011
   451
      ///
alpar@1011
   452
      SnapShot() : g(0) {}
alpar@1011
   453
      ///Constructor that immediately makes a snapshot.
alpar@1011
   454
      
alpar@1011
   455
      ///This constructor immediately makes a snapshot of the graph.
alpar@1011
   456
      ///\param _g The graph we make a snapshot of.
alpar@1011
   457
      SnapShot(ListGraph &_g) {
alpar@1011
   458
	regist(_g);
alpar@1011
   459
      }
alpar@1011
   460
      ///\bug Is it necessary?
alpar@1011
   461
      ///
alpar@1011
   462
      ~SnapShot() 
alpar@1011
   463
      {
alpar@1011
   464
	if(g) deregist();
alpar@1011
   465
      }
alpar@1011
   466
      
alpar@1011
   467
      ///Make a snapshot.
alpar@1011
   468
alpar@1011
   469
      ///Make a snapshot of the graph.
alpar@1011
   470
      ///
alpar@1011
   471
      ///This function can be called more than once. In case of a repeated
alpar@1011
   472
      ///call, the previous snapshot gets lost.
alpar@1011
   473
      ///\param _g The graph we make the snapshot of.
alpar@1011
   474
      void save(ListGraph &_g) 
alpar@1011
   475
      {
alpar@1011
   476
	if(g!=&_g) {
alpar@1011
   477
	  if(g) deregist();
alpar@1011
   478
	  regist(_g);
alpar@1011
   479
	}
alpar@1011
   480
	added_nodes.clear();
alpar@1011
   481
	added_edges.clear();
alpar@1011
   482
      }
alpar@1011
   483
      
alpar@1011
   484
    ///Undo the changes until the last snapshot.
alpar@1011
   485
alpar@1011
   486
    ///Undo the changes until last snapshot created by save().
alpar@1011
   487
    ///
alpar@1011
   488
    ///\todo This function might be called undo().
alpar@1011
   489
      void restore() {
alpar@1011
   490
	deregist();
alpar@1011
   491
	while(!added_edges.empty()) {
alpar@1011
   492
	  g->erase(added_edges.front());
alpar@1011
   493
	  added_edges.pop_front();
alpar@1011
   494
	}
alpar@1011
   495
 	while(!added_nodes.empty()) {
alpar@1011
   496
	  g->erase(added_nodes.front());
alpar@1011
   497
	  added_nodes.pop_front();
alpar@1011
   498
	}
alpar@1011
   499
      }
alpar@1011
   500
    };
alpar@1011
   501
    
alpar@949
   502
  };
klao@1034
   503
klao@1034
   504
klao@1034
   505
  /**************** Undirected List Graph ****************/
klao@1034
   506
klao@1034
   507
  typedef ErasableUndirGraphExtender<
klao@1034
   508
    ClearableUndirGraphExtender<
klao@1034
   509
    ExtendableUndirGraphExtender<
klao@1034
   510
    MappableUndirGraphExtender<
klao@1034
   511
    IterableUndirGraphExtender<
klao@1034
   512
    AlterableUndirGraphExtender<
klao@1034
   513
    UndirGraphExtender<ListGraphBase> > > > > > > ErasableUndirListGraphBase;
klao@1034
   514
klao@1034
   515
  class UndirListGraph : public ErasableUndirListGraphBase {
klao@1034
   516
  };
klao@1034
   517
alpar@949
   518
  
alpar@948
   519
  /// @}  
alpar@948
   520
} //namespace lemon
klao@946
   521
  
alpar@400
   522
klao@946
   523
#endif