# HG changeset patch
# User Peter Kovacs <kpeter@inf.elte.hu>
# Date 1225540969 -3600
# Node ID 95df249983db52dd0401545d246b6f5eb3b5c7d5
# Parent c6c6e1d863c4594c319451f9984ecad3cf417e8a
Move the doc of the nauty group to groups.dox
diff --git a/doc/groups.dox b/doc/groups.dox
a
|
b
|
|
235 | 235 | LEMON contains several algorithms for solving maximum flow problems: |
236 | 236 | - \ref lemon::EdmondsKarp "Edmonds-Karp" |
237 | 237 | - \ref lemon::Preflow "Goldberg's Preflow algorithm" |
238 | | - \ref lemon::DinitzSleatorTarjan "Dinitz's blocking flow algorithm with dynamic trees" |
| 238 | - \ref lemon::DinitzSleatorTarjan "Dinitz's blocking flow algorithm with |
| 239 | dynamic trees" |
239 | 240 | - \ref lemon::GoldbergTarjan "Preflow algorithm with dynamic trees" |
240 | 241 | |
241 | 242 | In most cases the \ref lemon::Preflow "Preflow" algorithm provides the |
… |
… |
|
293 | 294 | like connectivity, bipartiteness, euler property, simplicity etc. |
294 | 295 | |
295 | 296 | \image html edge_biconnected_components.png |
296 | | \image latex edge_biconnected_components.eps "bi-edge-connected components" width=\textwidth |
| 297 | \image latex edge_biconnected_components.eps |
| 298 | "bi-edge-connected components" width=\textwidth |
297 | 299 | */ |
298 | 300 | |
299 | 301 | /** |
… |
… |
|
464 | 466 | */ |
465 | 467 | |
466 | 468 | /** |
467 | | @defgroup lemon_io LEMON Input-Output |
| 469 | @defgroup lemon_io LEMON Graph Format |
468 | 470 | @ingroup io_group |
469 | 471 | \brief Reading and writing LEMON Graph Format. |
470 | 472 | |
… |
… |
|
479 | 481 | |
480 | 482 | This group describes general \c EPS drawing methods and special |
481 | 483 | graph exporting tools. |
| 484 | */ |
| 485 | |
| 486 | /** |
| 487 | @defgroup nauty_group NAUTY Format |
| 488 | @ingroup io_group |
| 489 | \brief Read \e Nauty format |
| 490 | Tool to read graphs from \e Nauty format data. |
482 | 491 | */ |
483 | 492 | |
484 | 493 | /** |
… |
… |
|
530 | 539 | /** |
531 | 540 | \anchor demoprograms |
532 | 541 | |
533 | | @defgroup demos Demo programs |
| 542 | @defgroup demos Demo Programs |
534 | 543 | |
535 | 544 | Some demo programs are listed here. Their full source codes can be found in |
536 | 545 | the \c demo subdirectory of the source tree. |
… |
… |
|
540 | 549 | */ |
541 | 550 | |
542 | 551 | /** |
543 | | @defgroup tools Standalone utility applications |
| 552 | @defgroup tools Standalone Utility Applications |
544 | 553 | |
545 | 554 | Some utility applications are listed here. |
546 | 555 | |
diff --git a/lemon/nauty_reader.h b/lemon/nauty_reader.h
a
|
b
|
|
19 | 19 | #ifndef LEMON_NAUTY_READER_H |
20 | 20 | #define LEMON_NAUTY_READER_H |
21 | 21 | |
| 22 | /// \ingroup nauty_group |
| 23 | /// \file |
| 24 | /// \brief Nauty file reader. |
| 25 | |
22 | 26 | #include <vector> |
23 | 27 | #include <iostream> |
24 | 28 | #include <string> |
25 | 29 | |
26 | | /// \ingroup io_group |
27 | | /// |
28 | | /// @defgroup nauty_group NAUTY format |
29 | | /// |
30 | | /// \brief Read \e Nauty format |
31 | | /// |
32 | | /// Tool to read graphs from \e Nauty format data |
33 | | |
34 | | /// \ingroup nauty_group |
35 | | /// \file |
36 | | /// \brief Nauty file reader. |
37 | 30 | namespace lemon { |
38 | 31 | |
39 | 32 | /// \ingroup nauty_group |