diff --git a/doc/xternal.c b/doc/xternal.c index 242eaf1761..f4e4a5b4fb 100644 --- a/doc/xternal.c +++ b/doc/xternal.c @@ -9049,6 +9049,13 @@ * @brief methods for creating and accessing user decompositions */ +/**@defgroup SymGraph Symmetry Detection Graph + * @ingroup DataStructures + * @brief methods for creating and manipulating symmetry detection graphs + * + * Below you find a list of functions to create and manipulate symmetry detection graphs. + */ + /**@defgroup MiscellaneousMethods Miscellaneous Methods * @ingroup PUBLICCOREAPI * @brief commonly used methods from different categories @@ -9455,7 +9462,7 @@ */ /**@defgroup PublicSymmetryMethods Symmetry - * @ingroup INTERNALAPI + * @ingroup PUBLICCOREAPI * @brief methods for symmetry handling */ diff --git a/src/scip/symmetry_graph.c b/src/scip/symmetry_graph.c index ac75f3cccb..fff19d342a 100644 --- a/src/scip/symmetry_graph.c +++ b/src/scip/symmetry_graph.c @@ -23,7 +23,7 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /**@file symmetry_graph.c - * @ingroup PUBLICCOREAPI + * @ingroup OTHER_CFILES * @brief methods for dealing with symmetry detection graphs * @author Christopher Hojny */ @@ -39,7 +39,7 @@ /** creates and initializes a symmetry detection graph with memory for the given number of nodes and edges * - * @note At some point, the graph needs to be freed! + * @note at some point, the graph needs to be freed! */ SCIP_RETCODE SCIPcreateSymgraph( SCIP* scip, /**< SCIP data structure */ diff --git a/src/scip/symmetry_graph.h b/src/scip/symmetry_graph.h index d58ef215a0..d0d05a4d95 100644 --- a/src/scip/symmetry_graph.h +++ b/src/scip/symmetry_graph.h @@ -44,7 +44,7 @@ extern "C" { #endif -/**@addtogroup PublicSymmetryGraphMethods +/**@addtogroup SymGraph * * @{ */