Skip to content

Commit bf0259b

Browse files
committed
core: remove std::cout
1 parent f3cc1cb commit bf0259b

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

include/eigenpy/eigen-from-python.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ namespace eigenpy
218218
(reinterpret_cast<void*>(memory));
219219

220220
EigenAllocator<MatOrRefType>::allocate(pyArray,storage);
221-
221+
222222
memory->convertible = storage->storage.bytes;
223223
}
224224

include/eigenpy/map.hpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,6 @@ namespace eigenpy
103103

104104
InputScalar* pyData = reinterpret_cast<InputScalar*>(PyArray_DATA(pyArray));
105105

106-
std::cout << "OuterStrideAtCompileTime: " << OuterStrideAtCompileTime << std::endl;
107-
std::cout << "InnerStrideAtCompileTime: " << InnerStrideAtCompileTime << std::endl;
108-
std::cout << "rows: " << rows << std::endl;
109-
std::cout << "cols: " << cols << std::endl;
110-
std::cout << "inner_stride: " << inner_stride << std::endl;
111-
std::cout << "outer_stride: " << outer_stride << std::endl;
112106
return EigenMap(pyData, rows, cols, stride);
113107
}
114108
};

src/numpy.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,5 @@ namespace eigenpy
1313
PyErr_Print();
1414
PyErr_SetString(PyExc_ImportError, "numpy.core.multiarray failed to import");
1515
}
16-
// std::cout << "init _import_array " << std::endl;
1716
}
1817
}

0 commit comments

Comments
 (0)