Skip to content

Commit 7d723d6

Browse files
committed
Add temp print statement
1 parent cfc6d14 commit 7d723d6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set(PYBIND11_PYTHON_VERSION "${PYTHON_VERSION}")
3030
include(CMakePrintHelpers)
3131

3232
find_package (Threads)
33-
find_package (Eigen3 3.4 REQUIRED)
33+
find_package (Eigen3 REQUIRED)
3434
message(STATUS "Found Eigen version ${EIGEN3_VERSION_STRING}")
3535

3636
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")

cpp/src/toppra/geometric_path/piecewise_poly_path.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ PiecewisePolyPath::PiecewisePolyPath(const Matrices & coefficients,
210210
computeDerivativesCoefficients();
211211
}
212212
Bound PiecewisePolyPath::pathInterval() const {
213+
std::cout << "BREAKPOINTS FOR PATH INTERVAL LENGTH " << m_breakpoints.size() << std::endl;
214+
std::cout << "FRONT: " << breakpoints.front() << std::endl;
215+
std::cout << "BACK: " << breakpoints.back() << std::endl;
213216
return Bound{m_breakpoints.front(), m_breakpoints.back()};
214217
};
215218

0 commit comments

Comments
 (0)