Let C be a binary covering matrix for a set covering problem, and I want to convert this into the appropriate covering constraints in Gurobi. I've managed to get it to work using scipy.csr_matrix
, but the process seems slow. I'm wondering if there's a more efficient way.
# Convert coverage to sparse matrix
csr_cover = csr_matrix(C.astype(bool))
cover_rows = np.split(csr_cover.indices, csr_cover.indptr)[1:-1]
# add facility coverages to the covering constraints
for i in range(numDemands):
m.addConstr(quicksum(X[j] for j in range(numSites) if i in cover_rows[j]) >= 1)