MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / deleteBasisRows

Function deleteBasisRows

highs/lp_data/HighsInterface.cpp:701–709  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

699}
700
701static void deleteBasisRows(HighsBasis& basis,
702 const HighsIndexCollection& index_collection,
703 const HighsInt original_num_row) {
704 bool deleted_basic;
705 bool deleted_nonbasic;
706 deleteBasisEntries(basis.row_status, deleted_basic, deleted_nonbasic,
707 index_collection, original_num_row);
708 if (deleted_nonbasic) basis.valid = false;
709}
710
711void Highs::deleteColsInterface(HighsIndexCollection& index_collection) {
712 HighsLp& lp = model_.lp_;

Callers 1

deleteRowsInterfaceMethod · 0.85

Calls 1

deleteBasisEntriesFunction · 0.85

Tested by

no test coverage detected