Sfoglia il codice sorgente

Remove old debug output

Former-commit-id: 867e6817b80aa17c93d52308984598db2d3f8a54
wkevin 9 anni fa
parent
commit
750c9ae344
1 ha cambiato i file con 0 aggiunte e 2 eliminazioni
  1. 0 2
      include/igl/comiso/miq.cpp

+ 0 - 2
include/igl/comiso/miq.cpp

@@ -1136,13 +1136,11 @@ IGL_INLINE void igl::comiso::PoissonSolver<DerivedV, DerivedF>::MixedIntegerSolv
     }
   }
   //// copy Constraints
-  std::ofstream consout("constraintsIGL.txt");
   for (int k=0; k < Constraints.outerSize(); ++k){
     for (Eigen::SparseMatrix<double>::InnerIterator it(Constraints,k); it; ++it){
       int row = it.row();
       int col = it.col();
       C(row, col) += it.value();
-      consout << row << "\t" << col << "\t" << it.value() << std::endl;
     }
   }