@@ -1344,17 +1344,17 @@ SCIP_RETCODE SCIPlpiChgCoef(
13441344/** changes the objective sense */
13451345SCIP_RETCODE SCIPlpiChgObjsen (
13461346 SCIP_LPI * lpi , /**< LP interface structure */
1347- SCIP_OBJSEN objsense /**< new objective sense */
1347+ SCIP_OBJSEN objsen /**< new objective sense */
13481348 )
13491349{
13501350 assert (lpi != NULL );
13511351 assert (lpi -> xprslp != NULL );
13521352
1353- SCIPdebugMessage ("changing objective sense in Xpress to %d\n" , objsense );
1353+ SCIPdebugMessage ("changing objective sense in Xpress to %d\n" , objsen );
13541354
13551355 invalidateSolution (lpi );
13561356
1357- CHECK_ZERO ( lpi -> messagehdlr , XPRSchgobjsense (lpi -> xprslp , xprsObjsen (objsense )) );
1357+ CHECK_ZERO ( lpi -> messagehdlr , XPRSchgobjsense (lpi -> xprslp , xprsObjsen (objsen )) );
13581358
13591359 return SCIP_OKAY ;
13601360}
@@ -1629,25 +1629,25 @@ SCIP_RETCODE SCIPlpiGetRows(
16291629 SCIP_LPI * lpi , /**< LP interface structure */
16301630 int firstrow , /**< first row to get from LP */
16311631 int lastrow , /**< last row to get from LP */
1632- SCIP_Real * lhss , /**< buffer to store left hand side vector, or NULL */
1633- SCIP_Real * rhss , /**< buffer to store right hand side vector, or NULL */
1632+ SCIP_Real * lhs , /**< buffer to store left hand side vector, or NULL */
1633+ SCIP_Real * rhs , /**< buffer to store right hand side vector, or NULL */
16341634 int * nnonz , /**< pointer to store the number of nonzero elements returned, or NULL */
16351635 int * beg , /**< buffer to store start index of each row in ind- and val-array, or NULL */
16361636 int * ind , /**< buffer to store column indices of constraint matrix entries, or NULL */
16371637 SCIP_Real * val /**< buffer to store values of constraint matrix entries, or NULL */
16381638 )
16391639{
1640- assert ((lhss != NULL && rhss != NULL ) || (lhss == NULL && rhss == NULL ));
1640+ assert ((lhs != NULL && rhs != NULL ) || (lhs == NULL && rhs == NULL ));
16411641 assert ((nnonz != NULL && beg != NULL && ind != NULL && val != NULL ) || (nnonz == NULL && beg == NULL && ind == NULL && val == NULL ));
16421642
16431643 debugCheckRowrang (lpi , firstrow , lastrow );
16441644
16451645 SCIPdebugMessage ("getting rows %d to %d\n" , firstrow , lastrow );
16461646
1647- if ( lhss != NULL )
1647+ if ( lhs != NULL )
16481648 {
16491649 /* get left and right sides */
1650- SCIP_CALL ( SCIPlpiGetSides (lpi , firstrow , lastrow , lhss , rhss ) );
1650+ SCIP_CALL ( SCIPlpiGetSides (lpi , firstrow , lastrow , lhs , rhs ) );
16511651 }
16521652
16531653 if ( nnonz != NULL )
@@ -3001,7 +3001,7 @@ SCIP_RETCODE SCIPlpiGetBasisInd(
30013001 */
30023002SCIP_RETCODE SCIPlpiGetBInvRow (
30033003 SCIP_LPI * lpi , /**< LP interface structure */
3004- int row , /**< row number */
3004+ int r , /**< row number */
30053005 SCIP_Real * coef , /**< pointer to store the coefficients of the row */
30063006 int * inds , /**< array to store the non-zero indices, or NULL */
30073007 int * ninds /**< pointer to store the number of non-zero indices, or NULL
@@ -3015,15 +3015,15 @@ SCIP_RETCODE SCIPlpiGetBInvRow(
30153015 assert (coef != NULL );
30163016 SCIP_UNUSED (inds );
30173017
3018- SCIPdebugMessage ("getting binv-row %d\n" , row );
3018+ SCIPdebugMessage ("getting binv-row %d\n" , r );
30193019
30203020 /* can only return dense result */
30213021 if ( ninds != NULL )
30223022 * ninds = -1 ;
30233023
30243024 CHECK_ZERO ( lpi -> messagehdlr , XPRSgetintattrib (lpi -> xprslp , XPRS_ROWS , & nrows ) );
30253025 BMSclearMemoryArray (coef , nrows );
3026- coef [row ] = 1.0 ;
3026+ coef [r ] = 1.0 ;
30273027 CHECK_ZERO ( lpi -> messagehdlr , XPRSbtran (lpi -> xprslp , coef ) );
30283028
30293029 return SCIP_OKAY ;
0 commit comments