Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhoen committed Sep 18, 2023
1 parent 7cc9c06 commit 854048f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scip/scip_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ SCIP_RETCODE SCIPprintNodeRootPath(

SCIPnodeGetAncestorBranchingPath(node, branchvars, branchbounds, boundtypes, &nbranchvars, branchvarssize, nodeswitches, &nnodes, nodeswitchsize );

/* if the arrays were to small, we have to reallocate them and recall SCIPnodeGetAncestorBranchingPath */
/* if the arrays were too small, we have to reallocate them and recall SCIPnodeGetAncestorBranchingPath */
if( nbranchvars > branchvarssize || nnodes > nodeswitchsize )
{
branchvarssize = nbranchvars;
Expand Down

0 comments on commit 854048f

Please sign in to comment.