@@ -674,10 +674,10 @@ HighsStatus Highs::addRowsInterface(HighsInt ext_num_new_row,
674674 return return_status;
675675}
676676
677- void deleteBasisEntries (std::vector<HighsBasisStatus>& status,
678- bool & deleted_basic, bool & deleted_nonbasic,
679- const HighsIndexCollection& index_collection,
680- const HighsInt entry_dim) {
677+ static void deleteBasisEntries (std::vector<HighsBasisStatus>& status,
678+ bool & deleted_basic, bool & deleted_nonbasic,
679+ const HighsIndexCollection& index_collection,
680+ const HighsInt entry_dim) {
681681 assert (ok (index_collection));
682682 assert (static_cast <size_t >(entry_dim) == status.size ());
683683 HighsInt from_k;
@@ -717,19 +717,19 @@ void deleteBasisEntries(std::vector<HighsBasisStatus>& status,
717717 status.resize (new_num_entry);
718718}
719719
720- void deleteBasisCols (HighsBasis& basis,
721- const HighsIndexCollection& index_collection,
722- const HighsInt original_num_col) {
720+ static void deleteBasisCols (HighsBasis& basis,
721+ const HighsIndexCollection& index_collection,
722+ const HighsInt original_num_col) {
723723 bool deleted_basic;
724724 bool deleted_nonbasic;
725725 deleteBasisEntries (basis.col_status , deleted_basic, deleted_nonbasic,
726726 index_collection, original_num_col);
727727 if (deleted_basic) basis.valid = false ;
728728}
729729
730- void deleteBasisRows (HighsBasis& basis,
731- const HighsIndexCollection& index_collection,
732- const HighsInt original_num_row) {
730+ static void deleteBasisRows (HighsBasis& basis,
731+ const HighsIndexCollection& index_collection,
732+ const HighsInt original_num_row) {
733733 bool deleted_basic;
734734 bool deleted_nonbasic;
735735 deleteBasisEntries (basis.row_status , deleted_basic, deleted_nonbasic,
0 commit comments