Skip to content

Commit 9f29d45

Browse files
committed
Removed unnecessary non-constant initialization.
1 parent ff3793e commit 9f29d45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scip/hypergraph.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ SCIP_Bool SCIPhypergraphIsValid(
13031303

13041304
if( SCIPhypergraphHasVertexEdges(hypergraph) )
13051305
{
1306-
int nincidences = SCIPhypergraphGetNIncidences(hypergraph);
1306+
int nincidences;
13071307
long long* incidences1 = NULL;
13081308
long long* incidences2 = NULL;
13091309
int i1 = 0;

0 commit comments

Comments
 (0)