File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -437,11 +437,11 @@ SCIP_RETCODE countNonlinearities(
437
437
/* get active index of resultant */
438
438
probindex = SCIPvarGetProbindex (SCIPvarGetProbvar (andres ));
439
439
440
- /**! [SnippetCodeStyleIfFor] */
441
440
/* the resultant might be deleted */
442
441
if ( probindex >= 0 )
443
442
++ nlcount [probindex ];
444
443
444
+ /**! [SnippetCodeStyleIfFor] */
445
445
for ( v = 0 ; v < nandvars ; ++ v )
446
446
{
447
447
/* get active index of operator */
@@ -625,7 +625,6 @@ SCIP_RETCODE addBdchg(
625
625
}
626
626
627
627
/**! [SnippetCodeStyleStaticAsserts] */
628
-
629
628
/** frees bound change arrays */
630
629
static
631
630
void freeBdchgs (
@@ -636,11 +635,11 @@ void freeBdchgs(
636
635
int * nbdchgs /**< pointer to number of bound changes */
637
636
)
638
637
{
638
+ assert (scip != NULL );
639
639
assert (bdchginds != NULL );
640
640
assert (bdchgtypes != NULL );
641
641
assert (bdchgbounds != NULL );
642
642
assert (nbdchgs != NULL );
643
-
644
643
/**! [SnippetCodeStyleStaticAsserts] */
645
644
646
645
SCIPfreeBufferArrayNull (scip , bdchgbounds );
You can’t perform that action at this time.
0 commit comments