graph_utils.dox
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 01 Mar 2010 02:30:00 +0100
changeset 58 10b6a5b7d4c0
permissions -rw-r--r--
Improve Algorithms section (it is still under construction)
kpeter@46
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
kpeter@46
     2
 *
kpeter@46
     3
 * This file is a part of LEMON, a generic C++ optimization library.
kpeter@46
     4
 *
kpeter@46
     5
 * Copyright (C) 2003-2010
kpeter@46
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
kpeter@46
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
kpeter@46
     8
 *
kpeter@46
     9
 * Permission to use, modify and distribute this software is granted
kpeter@46
    10
 * provided that this copyright notice appears in all copies. For
kpeter@46
    11
 * precise terms see the accompanying LICENSE file.
kpeter@46
    12
 *
kpeter@46
    13
 * This software is provided "AS IS" with no warranty of any kind,
kpeter@46
    14
 * express or implied, and with no claim as to its suitability for any
kpeter@46
    15
 * purpose.
kpeter@46
    16
 *
kpeter@46
    17
 */
kpeter@46
    18
kpeter@46
    19
namespace lemon {
kpeter@46
    20
/**
kpeter@46
    21
[PAGE]sec_graph_utilities[PAGE] Basic Graph Utilities
kpeter@46
    22
kpeter@46
    23
\todo This page is under construction.
kpeter@46
    24
kpeter@46
    25
kpeter@46
    26
[SEC]sec_util_item_count[SEC] Count Graph Items
kpeter@46
    27
kpeter@46
    28
See countNodes(), countArcs(), countEdges(),
kpeter@46
    29
countOutArcs(), countInArcs(), countIncEdges().
kpeter@46
    30
kpeter@46
    31
kpeter@46
    32
[SEC]sec_util_graph_copy[SEC] Copying a Graph
kpeter@46
    33
kpeter@46
    34
See DigraphCopy and GraphCopy.
kpeter@46
    35
kpeter@46
    36
kpeter@46
    37
[SEC]sec_util_typedefs[SEC] Type Definitions
kpeter@46
    38
kpeter@46
    39
See DIGRAPH_TYPEDEFS, GRAPH_TYPEDEFS and their TEMPLATE_* variants.
kpeter@46
    40
kpeter@46
    41
kpeter@46
    42
[SEC]sec_util_graph_maps[SEC] Special Graph Maps
kpeter@46
    43
kpeter@46
    44
See \ref graph_maps in the reference manual.
kpeter@46
    45
kpeter@46
    46
[TRAILER]
kpeter@46
    47
*/
kpeter@46
    48
}