浏览代码

Remove old debug output

Former-commit-id: 867e6817b80aa17c93d52308984598db2d3f8a54
wkevin 10 年之前
父节点
当前提交
750c9ae344
共有 1 个文件被更改,包括 0 次插入2 次删除
  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;
     }
   }