diff --git a/lib/lattice/Lattice_reduction.h b/lib/lattice/Lattice_reduction.h index 40d1526d..41351c98 100644 --- a/lib/lattice/Lattice_reduction.h +++ b/lib/lattice/Lattice_reduction.h @@ -277,19 +277,19 @@ template inline void sliceSum(const Lattice &Data,std::vector< template static void mySliceInnerProductVector( std::vector & result, const Lattice &lhs,const Lattice &rhs,int orthogdim) { - std::cout << GridLogMessage << "Start mySliceInnerProductVector" << std::endl; + // std::cout << GridLogMessage << "Start mySliceInnerProductVector" << std::endl; typedef typename vobj::scalar_type scalar_type; std::vector lsSum; localSliceInnerProductVector(result, lhs, rhs, lsSum, orthogdim); globalSliceInnerProductVector(result, lhs, lsSum, orthogdim); - std::cout << GridLogMessage << "End mySliceInnerProductVector" << std::endl; + // std::cout << GridLogMessage << "End mySliceInnerProductVector" << std::endl; } template static void localSliceInnerProductVector(std::vector &result, const Lattice &lhs, const Lattice &rhs, std::vector &lsSum, int orthogdim) { - std::cout << GridLogMessage << "Start prep" << std::endl; + // std::cout << GridLogMessage << "Start prep" << std::endl; typedef typename vobj::vector_type vector_type; typedef typename vobj::scalar_type scalar_type; GridBase *grid = lhs._grid;