From 93778f4351380556ec4436fb12dc1e54f371e25a Mon Sep 17 00:00:00 2001 From: Stefan Vigerske Date: Thu, 15 Aug 2024 10:53:33 +0200 Subject: [PATCH] fix danglings \ref's and a misspelled #undef in hypergraph code --- src/scip/hypergraph.c | 6 +++--- src/scip/hypergraph.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/scip/hypergraph.c b/src/scip/hypergraph.c index 5df54f59d8..6309f46b71 100644 --- a/src/scip/hypergraph.c +++ b/src/scip/hypergraph.c @@ -577,7 +577,7 @@ SCIP_RETCODE findOverlap( /** * @brief computes all overlaps and stores overlaps' vertices and all edges' overlaps * - * Requires \ref SCIPhypergraphHasVerticesEdges to be \c TRUE which results from \ref SCIPhypergraphComputeVerticesEdges. + * Requires \ref SCIPhypergraphHasVertexEdges to be \c TRUE which results from \ref SCIPhypergraphComputeVerticesEdges. */ SCIP_RETCODE SCIPhypergraphComputeOverlaps( SCIP_HYPERGRAPH* hypergraph, /**< The hypergraph. */ @@ -1735,7 +1735,7 @@ SCIP_HYPERGRAPH_OVERLAP SCIPhypergraphIterOverlap( #undef SCIPhypergraphOverlapData #undef SCIPhypergraphEdgeSize #undef SCIPhypergraphEdgeVertices -#undef SCIPhypergraphHasVerticesEdges +#undef SCIPhypergraphHasVertexEdges #undef SCIPhypergraphVerticesEdgesFirst #undef SCIPhypergraphVerticesEdgesBeyond #undef SCIPhypergraphVerticesEdgesGet @@ -2075,7 +2075,7 @@ SCIP_HYPERGRAPH_OVERLAP SCIPhypergraphOverlapsEdgesGetAtIndex( /** * @brief returns whether vertices' incident overlaps are known * - * Use \ref SCIPhypergraphComputeVertexOverlaps to compute them. + * Use \ref SCIPhypergraphComputeOverlaps to compute them. */ SCIP_Bool SCIPhypergraphHasVertexOverlaps( SCIP_HYPERGRAPH* hypergraph /**< The hypergraph. */ diff --git a/src/scip/hypergraph.h b/src/scip/hypergraph.h index 62a8de7b94..d1f7ded7bb 100644 --- a/src/scip/hypergraph.h +++ b/src/scip/hypergraph.h @@ -108,7 +108,7 @@ SCIP_RETCODE SCIPhypergraphComputeVerticesEdges( /** * @brief computes all overlaps and stores overlaps' vertices and all edges' overlaps * - * Requires \ref SCIPhypergraphHasVerticesEdges to be \c TRUE which results from + * Requires \ref SCIPhypergraphHasVertexEdges to be \c TRUE which results from * \ref SCIPhypergraphComputeVerticesEdges. */ SCIP_RETCODE SCIPhypergraphComputeOverlaps( @@ -267,7 +267,7 @@ SCIP_Bool SCIPhypergraphHasOverlapsEdges( /** * @brief returns whether vertices' incident overlaps are known * - * Use \ref SCIPhypergraphComputeVertexOverlaps to compute them. + * Use \ref SCIPhypergraphComputeOverlaps to compute them. */ SCIP_Bool SCIPhypergraphHasVertexOverlaps( SCIP_HYPERGRAPH* hypergraph /**< The hypergraph. */