Skip to content

Commit

Permalink
fix danglings \ref's and a misspelled #undef in hypergraph code
Browse files Browse the repository at this point in the history
  • Loading branch information
svigerske committed Aug 15, 2024
1 parent 6e235e8 commit 93778f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/scip/hypergraph.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down Expand Up @@ -1735,7 +1735,7 @@ SCIP_HYPERGRAPH_OVERLAP SCIPhypergraphIterOverlap(
#undef SCIPhypergraphOverlapData
#undef SCIPhypergraphEdgeSize
#undef SCIPhypergraphEdgeVertices
#undef SCIPhypergraphHasVerticesEdges
#undef SCIPhypergraphHasVertexEdges
#undef SCIPhypergraphVerticesEdgesFirst
#undef SCIPhypergraphVerticesEdgesBeyond
#undef SCIPhypergraphVerticesEdgesGet
Expand Down Expand Up @@ -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. */
Expand Down
4 changes: 2 additions & 2 deletions src/scip/hypergraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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. */
Expand Down

0 comments on commit 93778f4

Please sign in to comment.