Skip to content

Commit

Permalink
Now to delete getColsInterfaceArch and getRowsInterfaceArch
Browse files Browse the repository at this point in the history
  • Loading branch information
jajhall committed Jan 9, 2025
1 parent c931bd4 commit b66d2cf
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/lp_data/HighsInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,15 @@ void Highs::getColsInterface(const HighsIndexCollection& index_collection,
cost, lower, upper,
num_nz, start, index, value);
} else {
getColsInterfaceArch(index_collection, num_col, cost, lower, upper, num_nz, start,
index, value);
printf("Calling getSubVectorsTranspose from getColsInterface (Interval = %d; Set = %d; Mask = %d)\n",
index_collection.is_interval_, index_collection.is_set_, index_collection.is_mask_);
getSubVectorsTranspose(index_collection,
lp.num_col_,
lp.col_cost_.data(), lp.col_lower_.data(), lp.col_upper_.data(),
lp.a_matrix_,
num_col,
cost, lower, upper,
num_nz, start, index, value);
}
}

Expand Down

0 comments on commit b66d2cf

Please sign in to comment.