Blob Blame History Raw
https://github.com/coin-or/Bonmin/commit/fe6f493c1ac45373db1a6a29138d70c85a310a08

--- a/src/Algorithms/QuadCuts/BonQuadRow.cpp	2021-07-20 11:22:40.885361344 -0600
+++ b/src/Algorithms/QuadCuts/BonQuadRow.cpp	2021-07-20 11:24:48.038574325 -0600
@@ -263,7 +263,7 @@ QuadRow::add_to_hessian(AdjustableMat &H
   assert(Q_hessian_idx_.empty());
   for(int i = 0 ; i < Q_.nnz_ ; i++){
      std::pair<int, int> e;
-     e = std::make_pair(Q_.jCol_[i] + offset, Q_.iRow_[i] + offset);
+     e = std::make_pair(Q_.jCol_[i] + (offset ? 1 : 0), Q_.iRow_[i] + (offset ? 1 : 0));
      AdjustableMat::iterator pos = H.find(e);
      if(pos != H.end()){//Already exists
        if(pos->second.second != -1)