|
Packit |
ea1746 |
# Ceres Solver - A fast non-linear least squares minimizer
|
|
Packit |
ea1746 |
# Copyright 2015 Google Inc. All rights reserved.
|
|
Packit |
ea1746 |
# http://ceres-solver.org/
|
|
Packit |
ea1746 |
#
|
|
Packit |
ea1746 |
# Redistribution and use in source and binary forms, with or without
|
|
Packit |
ea1746 |
# modification, are permitted provided that the following conditions are met:
|
|
Packit |
ea1746 |
#
|
|
Packit |
ea1746 |
# * Redistributions of source code must retain the above copyright notice,
|
|
Packit |
ea1746 |
# this list of conditions and the following disclaimer.
|
|
Packit |
ea1746 |
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
Packit |
ea1746 |
# this list of conditions and the following disclaimer in the documentation
|
|
Packit |
ea1746 |
# and/or other materials provided with the distribution.
|
|
Packit |
ea1746 |
# * Neither the name of Google Inc. nor the names of its contributors may be
|
|
Packit |
ea1746 |
# used to endorse or promote products derived from this software without
|
|
Packit |
ea1746 |
# specific prior written permission.
|
|
Packit |
ea1746 |
#
|
|
Packit |
ea1746 |
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
Packit |
ea1746 |
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
Packit |
ea1746 |
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
Packit |
ea1746 |
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
Packit |
ea1746 |
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
Packit |
ea1746 |
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
Packit |
ea1746 |
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
Packit |
ea1746 |
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
Packit |
ea1746 |
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
Packit |
ea1746 |
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
Packit |
ea1746 |
# POSSIBILITY OF SUCH DAMAGE.
|
|
Packit |
ea1746 |
#
|
|
Packit |
ea1746 |
# Author: keir@google.com (Keir Mierle)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
set(CERES_INTERNAL_SRC
|
|
Packit |
ea1746 |
array_utils.cc
|
|
Packit |
ea1746 |
blas.cc
|
|
Packit |
ea1746 |
block_evaluate_preparer.cc
|
|
Packit |
ea1746 |
block_jacobi_preconditioner.cc
|
|
Packit |
ea1746 |
block_jacobian_writer.cc
|
|
Packit |
ea1746 |
block_random_access_dense_matrix.cc
|
|
Packit |
ea1746 |
block_random_access_diagonal_matrix.cc
|
|
Packit |
ea1746 |
block_random_access_matrix.cc
|
|
Packit |
ea1746 |
block_random_access_sparse_matrix.cc
|
|
Packit |
ea1746 |
block_sparse_matrix.cc
|
|
Packit |
ea1746 |
block_structure.cc
|
|
Packit |
ea1746 |
c_api.cc
|
|
Packit |
ea1746 |
canonical_views_clustering.cc
|
|
Packit |
ea1746 |
cgnr_solver.cc
|
|
Packit |
ea1746 |
callbacks.cc
|
|
Packit |
ea1746 |
compressed_col_sparse_matrix_utils.cc
|
|
Packit |
ea1746 |
compressed_row_jacobian_writer.cc
|
|
Packit |
ea1746 |
compressed_row_sparse_matrix.cc
|
|
Packit |
ea1746 |
conditioned_cost_function.cc
|
|
Packit |
ea1746 |
conjugate_gradients_solver.cc
|
|
Packit |
ea1746 |
coordinate_descent_minimizer.cc
|
|
Packit |
ea1746 |
corrector.cc
|
|
Packit |
ea1746 |
covariance.cc
|
|
Packit |
ea1746 |
covariance_impl.cc
|
|
Packit |
ea1746 |
cxsparse.cc
|
|
Packit |
ea1746 |
dense_normal_cholesky_solver.cc
|
|
Packit |
ea1746 |
dense_qr_solver.cc
|
|
Packit |
ea1746 |
dense_sparse_matrix.cc
|
|
Packit |
ea1746 |
detect_structure.cc
|
|
Packit |
ea1746 |
dogleg_strategy.cc
|
|
Packit |
ea1746 |
dynamic_compressed_row_jacobian_writer.cc
|
|
Packit |
ea1746 |
dynamic_compressed_row_sparse_matrix.cc
|
|
Packit |
ea1746 |
dynamic_sparse_normal_cholesky_solver.cc
|
|
Packit |
ea1746 |
evaluator.cc
|
|
Packit |
ea1746 |
eigensparse.cc
|
|
Packit |
ea1746 |
file.cc
|
|
Packit |
ea1746 |
function_sample.cc
|
|
Packit |
ea1746 |
gradient_checker.cc
|
|
Packit |
ea1746 |
gradient_checking_cost_function.cc
|
|
Packit |
ea1746 |
gradient_problem.cc
|
|
Packit |
ea1746 |
gradient_problem_solver.cc
|
|
Packit |
ea1746 |
implicit_schur_complement.cc
|
|
Packit |
ea1746 |
inner_product_computer.cc
|
|
Packit |
ea1746 |
is_close.cc
|
|
Packit |
ea1746 |
iterative_schur_complement_solver.cc
|
|
Packit |
ea1746 |
levenberg_marquardt_strategy.cc
|
|
Packit |
ea1746 |
lapack.cc
|
|
Packit |
ea1746 |
line_search.cc
|
|
Packit |
ea1746 |
line_search_direction.cc
|
|
Packit |
ea1746 |
line_search_minimizer.cc
|
|
Packit |
ea1746 |
line_search_preprocessor.cc
|
|
Packit |
ea1746 |
linear_least_squares_problems.cc
|
|
Packit |
ea1746 |
linear_operator.cc
|
|
Packit |
ea1746 |
linear_solver.cc
|
|
Packit |
ea1746 |
local_parameterization.cc
|
|
Packit |
ea1746 |
loss_function.cc
|
|
Packit |
ea1746 |
low_rank_inverse_hessian.cc
|
|
Packit |
ea1746 |
minimizer.cc
|
|
Packit |
ea1746 |
normal_prior.cc
|
|
Packit |
ea1746 |
parameter_block_ordering.cc
|
|
Packit |
ea1746 |
partitioned_matrix_view.cc
|
|
Packit |
ea1746 |
polynomial.cc
|
|
Packit |
ea1746 |
preconditioner.cc
|
|
Packit |
ea1746 |
preprocessor.cc
|
|
Packit |
ea1746 |
problem.cc
|
|
Packit |
ea1746 |
problem_impl.cc
|
|
Packit |
ea1746 |
program.cc
|
|
Packit |
ea1746 |
reorder_program.cc
|
|
Packit |
ea1746 |
residual_block.cc
|
|
Packit |
ea1746 |
residual_block_utils.cc
|
|
Packit |
ea1746 |
schur_complement_solver.cc
|
|
Packit |
ea1746 |
schur_eliminator.cc
|
|
Packit |
ea1746 |
schur_jacobi_preconditioner.cc
|
|
Packit |
ea1746 |
schur_templates.cc
|
|
Packit |
ea1746 |
scratch_evaluate_preparer.cc
|
|
Packit |
ea1746 |
single_linkage_clustering.cc
|
|
Packit |
ea1746 |
solver.cc
|
|
Packit |
ea1746 |
solver_utils.cc
|
|
Packit |
ea1746 |
sparse_matrix.cc
|
|
Packit |
ea1746 |
sparse_cholesky.cc
|
|
Packit |
ea1746 |
sparse_normal_cholesky_solver.cc
|
|
Packit |
ea1746 |
split.cc
|
|
Packit |
ea1746 |
stringprintf.cc
|
|
Packit |
ea1746 |
suitesparse.cc
|
|
Packit |
ea1746 |
triplet_sparse_matrix.cc
|
|
Packit |
ea1746 |
trust_region_preprocessor.cc
|
|
Packit |
ea1746 |
trust_region_minimizer.cc
|
|
Packit |
ea1746 |
trust_region_step_evaluator.cc
|
|
Packit |
ea1746 |
trust_region_strategy.cc
|
|
Packit |
ea1746 |
types.cc
|
|
Packit |
ea1746 |
visibility.cc
|
|
Packit |
ea1746 |
visibility_based_preconditioner.cc
|
|
Packit |
ea1746 |
wall_time.cc
|
|
Packit |
ea1746 |
)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
# Also depend on the header files so that they appear in IDEs.
|
|
Packit |
ea1746 |
file(GLOB CERES_INTERNAL_HDRS *.h)
|
|
Packit |
ea1746 |
if (MINIGLOG)
|
|
Packit |
ea1746 |
file(GLOB MINIGLOG_HDRS miniglog/glog/*.h)
|
|
Packit |
ea1746 |
list(APPEND CERES_INTERNAL_HDRS ${MINIGLOG_HDRS})
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
# Depend also on public headers so they appear in IDEs.
|
|
Packit |
ea1746 |
file(GLOB CERES_PUBLIC_HDRS ${Ceres_SOURCE_DIR}/include/ceres/*.h)
|
|
Packit |
ea1746 |
file(GLOB CERES_PUBLIC_INTERNAL_HDRS ${Ceres_SOURCE_DIR}/include/ceres/internal/*.h)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
# Include the specialized schur solvers.
|
|
Packit |
ea1746 |
if (SCHUR_SPECIALIZATIONS)
|
|
Packit |
ea1746 |
file(GLOB CERES_INTERNAL_SCHUR_FILES generated/*.cc)
|
|
Packit |
ea1746 |
else (SCHUR_SPECIALIZATIONS)
|
|
Packit |
ea1746 |
# Only the fully dynamic solver. The build is much faster this way.
|
|
Packit |
ea1746 |
file(GLOB CERES_INTERNAL_SCHUR_FILES generated/*_d_d_d.cc)
|
|
Packit |
ea1746 |
endif (SCHUR_SPECIALIZATIONS)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
# Build the list of dependencies for Ceres based on the current configuration.
|
|
Packit |
ea1746 |
if (NOT MINIGLOG AND GLOG_FOUND)
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PUBLIC_DEPENDENCIES ${GLOG_LIBRARIES})
|
|
Packit |
ea1746 |
if (GFLAGS_FOUND)
|
|
Packit |
ea1746 |
# If glog & gflags are both found, we assume that glog was built with
|
|
Packit |
ea1746 |
# gflags, as it is awkward to perform a try_compile() to verify this
|
|
Packit |
ea1746 |
# when gflags is an imported target (as it is in newer versions).
|
|
Packit |
ea1746 |
# As glog #includes gflags/gflags.h in glog/logging.h if compiled with
|
|
Packit |
ea1746 |
# gflags, it is thus a public dependency for Ceres in this case.
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PUBLIC_DEPENDENCIES ${GFLAGS_LIBRARIES})
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
endif (NOT MINIGLOG AND GLOG_FOUND)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (SUITESPARSE AND SUITESPARSE_FOUND)
|
|
Packit |
ea1746 |
# Define version information for use in Solver::FullReport.
|
|
Packit |
ea1746 |
add_definitions(-DCERES_SUITESPARSE_VERSION="${SUITESPARSE_VERSION}")
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PRIVATE_DEPENDENCIES ${SUITESPARSE_LIBRARIES})
|
|
Packit |
ea1746 |
endif (SUITESPARSE AND SUITESPARSE_FOUND)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (CXSPARSE AND CXSPARSE_FOUND)
|
|
Packit |
ea1746 |
# Define version information for use in Solver::FullReport.
|
|
Packit |
ea1746 |
add_definitions(-DCERES_CXSPARSE_VERSION="${CXSPARSE_VERSION}")
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PRIVATE_DEPENDENCIES ${CXSPARSE_LIBRARIES})
|
|
Packit |
ea1746 |
endif (CXSPARSE AND CXSPARSE_FOUND)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (BLAS_FOUND AND LAPACK_FOUND)
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PRIVATE_DEPENDENCIES ${LAPACK_LIBRARIES})
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PRIVATE_DEPENDENCIES ${BLAS_LIBRARIES})
|
|
Packit |
ea1746 |
endif (BLAS_FOUND AND LAPACK_FOUND)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (OPENMP_FOUND)
|
|
Packit |
ea1746 |
# OpenMP support in Clang requires a non-GNU OpenMP library.
|
|
Packit |
ea1746 |
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PRIVATE_DEPENDENCIES gomp)
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
if (NOT MSVC)
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_PRIVATE_DEPENDENCIES ${CMAKE_THREAD_LIBS_INIT})
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
endif (OPENMP_FOUND)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
set(CERES_LIBRARY_SOURCE
|
|
Packit |
ea1746 |
${CERES_INTERNAL_SRC}
|
|
Packit |
ea1746 |
${CERES_INTERNAL_HDRS}
|
|
Packit |
ea1746 |
${CERES_PUBLIC_HDRS}
|
|
Packit |
ea1746 |
${CERES_PUBLIC_INTERNAL_HDRS}
|
|
Packit |
ea1746 |
${CERES_INTERNAL_SCHUR_FILES})
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
# Primarily for Android, but optionally for others, compile the minimal
|
|
Packit |
ea1746 |
# glog implementation into Ceres.
|
|
Packit |
ea1746 |
if (MINIGLOG)
|
|
Packit |
ea1746 |
list(APPEND CERES_LIBRARY_SOURCE miniglog/glog/logging.cc)
|
|
Packit |
ea1746 |
endif (MINIGLOG)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
add_library(ceres ${CERES_LIBRARY_SOURCE})
|
|
Packit |
ea1746 |
set_target_properties(ceres PROPERTIES
|
|
Packit |
ea1746 |
VERSION ${CERES_VERSION}
|
|
Packit |
ea1746 |
SOVERSION ${CERES_VERSION_MAJOR})
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
include(AppendTargetProperty)
|
|
Packit |
ea1746 |
# Always build position-independent code (PIC), even when building Ceres as a
|
|
Packit |
ea1746 |
# static library so that shared libraries can link against it, not just
|
|
Packit |
ea1746 |
# executables (PIC does not apply on Windows).
|
|
Packit |
ea1746 |
if (NOT WIN32 AND NOT BUILD_SHARED_LIBS)
|
|
Packit |
ea1746 |
# Use the explicit POSITION_INDEPENDENT_CODE target property on CMake versions
|
|
Packit |
ea1746 |
# that support it (>= 2.8.9). Otherwise, manually add the -fPIC flag as an
|
|
Packit |
ea1746 |
# additional compile definitions for the target.
|
|
Packit |
ea1746 |
if (CMAKE_VERSION VERSION_LESS "2.8.9")
|
|
Packit |
ea1746 |
append_target_property(ceres COMPILE_FLAGS "-fPIC")
|
|
Packit |
ea1746 |
else()
|
|
Packit |
ea1746 |
# Use set_target_properties() not append_target_property() here as
|
|
Packit |
ea1746 |
# POSITION_INDEPENDENT_CODE is a binary ON/OFF switch.
|
|
Packit |
ea1746 |
set_target_properties(ceres PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (CXX11)
|
|
Packit |
ea1746 |
include(AddCeresCXX11RequirementsToTarget)
|
|
Packit |
ea1746 |
add_ceres_cxx11_requirements_to_target(ceres)
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (BUILD_SHARED_LIBS)
|
|
Packit |
ea1746 |
# When building a shared library, mark all external libraries as
|
|
Packit |
ea1746 |
# PRIVATE so they don't show up as a dependency.
|
|
Packit |
ea1746 |
target_link_libraries(ceres
|
|
Packit |
ea1746 |
LINK_PUBLIC ${CERES_LIBRARY_PUBLIC_DEPENDENCIES}
|
|
Packit |
ea1746 |
LINK_PRIVATE ${CERES_LIBRARY_PRIVATE_DEPENDENCIES})
|
|
Packit |
ea1746 |
else (BUILD_SHARED_LIBS)
|
|
Packit |
ea1746 |
# When building a static library, all external libraries are
|
|
Packit |
ea1746 |
# PUBLIC(default) since the user needs to link to them.
|
|
Packit |
ea1746 |
# They will be listed in CeresTargets.cmake.
|
|
Packit |
ea1746 |
set(CERES_LIBRARY_DEPENDENCIES
|
|
Packit |
ea1746 |
${CERES_LIBRARY_PUBLIC_DEPENDENCIES}
|
|
Packit |
ea1746 |
${CERES_LIBRARY_PRIVATE_DEPENDENCIES})
|
|
Packit |
ea1746 |
target_link_libraries(ceres ${CERES_LIBRARY_DEPENDENCIES})
|
|
Packit |
ea1746 |
endif (BUILD_SHARED_LIBS)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
install(TARGETS ceres
|
|
Packit |
ea1746 |
EXPORT CeresExport
|
|
Packit |
ea1746 |
RUNTIME DESTINATION bin
|
|
Packit |
ea1746 |
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
Packit |
ea1746 |
ARCHIVE DESTINATION lib${LIB_SUFFIX})
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (BUILD_TESTING AND GFLAGS)
|
|
Packit |
ea1746 |
add_library(gtest gmock_gtest_all.cc gmock_main.cc)
|
|
Packit |
ea1746 |
if (BUILD_SHARED_LIBS)
|
|
Packit |
ea1746 |
# Define gtest-specific shared library flags for compilation.
|
|
Packit |
ea1746 |
append_target_property(gtest COMPILE_DEFINITIONS
|
|
Packit |
ea1746 |
GTEST_CREATE_SHARED_LIBRARY)
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
add_library(test_util
|
|
Packit |
ea1746 |
evaluator_test_utils.cc
|
|
Packit |
ea1746 |
numeric_diff_test_utils.cc
|
|
Packit |
ea1746 |
test_util.cc)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
if (MINIGLOG)
|
|
Packit |
ea1746 |
# When using miniglog, it is compiled into Ceres, thus Ceres becomes
|
|
Packit |
ea1746 |
# the library against which other libraries should link for logging.
|
|
Packit |
ea1746 |
target_link_libraries(gtest ${GFLAGS_LIBRARIES} ceres)
|
|
Packit |
ea1746 |
target_link_libraries(test_util ceres gtest)
|
|
Packit |
ea1746 |
else (MINIGLOG)
|
|
Packit |
ea1746 |
target_link_libraries(gtest ${GFLAGS_LIBRARIES} ${GLOG_LIBRARIES})
|
|
Packit |
ea1746 |
target_link_libraries(test_util ceres gtest ${GLOG_LIBRARIES})
|
|
Packit |
ea1746 |
endif (MINIGLOG)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
macro (CERES_TEST NAME)
|
|
Packit |
ea1746 |
add_executable(${NAME}_test ${NAME}_test.cc)
|
|
Packit |
ea1746 |
target_link_libraries(${NAME}_test test_util ceres gtest)
|
|
Packit |
ea1746 |
if (BUILD_SHARED_LIBS)
|
|
Packit |
ea1746 |
# Define gtest-specific shared library flags for linking.
|
|
Packit |
ea1746 |
append_target_property(${NAME}_test COMPILE_DEFINITIONS
|
|
Packit |
ea1746 |
GTEST_LINKED_AS_SHARED_LIBRARY)
|
|
Packit |
ea1746 |
endif()
|
|
Packit |
ea1746 |
add_test(NAME ${NAME}_test
|
|
Packit |
ea1746 |
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${NAME}_test
|
|
Packit |
ea1746 |
--test_srcdir
|
|
Packit |
ea1746 |
${Ceres_SOURCE_DIR}/data)
|
|
Packit |
ea1746 |
endmacro (CERES_TEST)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
ceres_test(array_utils)
|
|
Packit |
ea1746 |
ceres_test(autodiff)
|
|
Packit |
ea1746 |
ceres_test(autodiff_cost_function)
|
|
Packit |
ea1746 |
ceres_test(autodiff_local_parameterization)
|
|
Packit |
ea1746 |
ceres_test(block_jacobi_preconditioner)
|
|
Packit |
ea1746 |
ceres_test(block_random_access_dense_matrix)
|
|
Packit |
ea1746 |
ceres_test(block_random_access_diagonal_matrix)
|
|
Packit |
ea1746 |
ceres_test(block_random_access_sparse_matrix)
|
|
Packit |
ea1746 |
ceres_test(block_sparse_matrix)
|
|
Packit |
ea1746 |
ceres_test(c_api)
|
|
Packit |
ea1746 |
ceres_test(canonical_views_clustering)
|
|
Packit |
ea1746 |
ceres_test(compressed_col_sparse_matrix_utils)
|
|
Packit |
ea1746 |
ceres_test(compressed_row_sparse_matrix)
|
|
Packit |
ea1746 |
ceres_test(conditioned_cost_function)
|
|
Packit |
ea1746 |
ceres_test(conjugate_gradients_solver)
|
|
Packit |
ea1746 |
ceres_test(corrector)
|
|
Packit |
ea1746 |
ceres_test(cost_function_to_functor)
|
|
Packit |
ea1746 |
ceres_test(covariance)
|
|
Packit |
ea1746 |
ceres_test(cubic_interpolation)
|
|
Packit |
ea1746 |
ceres_test(dense_linear_solver)
|
|
Packit |
ea1746 |
ceres_test(dense_sparse_matrix)
|
|
Packit |
ea1746 |
ceres_test(detect_structure)
|
|
Packit |
ea1746 |
ceres_test(dogleg_strategy)
|
|
Packit |
ea1746 |
ceres_test(dynamic_autodiff_cost_function)
|
|
Packit |
ea1746 |
ceres_test(dynamic_compressed_row_sparse_matrix)
|
|
Packit |
ea1746 |
ceres_test(dynamic_numeric_diff_cost_function)
|
|
Packit |
ea1746 |
ceres_test(dynamic_sparse_normal_cholesky_solver)
|
|
Packit |
ea1746 |
ceres_test(dynamic_sparsity)
|
|
Packit |
ea1746 |
ceres_test(evaluator)
|
|
Packit |
ea1746 |
ceres_test(gradient_checker)
|
|
Packit |
ea1746 |
ceres_test(gradient_checking_cost_function)
|
|
Packit |
ea1746 |
ceres_test(gradient_problem)
|
|
Packit |
ea1746 |
ceres_test(gradient_problem_solver)
|
|
Packit |
ea1746 |
ceres_test(graph)
|
|
Packit |
ea1746 |
ceres_test(graph_algorithms)
|
|
Packit |
ea1746 |
ceres_test(householder_vector)
|
|
Packit |
ea1746 |
ceres_test(implicit_schur_complement)
|
|
Packit |
ea1746 |
ceres_test(inner_product_computer)
|
|
Packit |
ea1746 |
ceres_test(invert_psd_matrix)
|
|
Packit |
ea1746 |
ceres_test(is_close)
|
|
Packit |
ea1746 |
ceres_test(iterative_schur_complement_solver)
|
|
Packit |
ea1746 |
ceres_test(jet)
|
|
Packit |
ea1746 |
ceres_test(levenberg_marquardt_strategy)
|
|
Packit |
ea1746 |
ceres_test(line_search_minimizer)
|
|
Packit |
ea1746 |
ceres_test(line_search_preprocessor)
|
|
Packit |
ea1746 |
ceres_test(local_parameterization)
|
|
Packit |
ea1746 |
ceres_test(loss_function)
|
|
Packit |
ea1746 |
ceres_test(minimizer)
|
|
Packit |
ea1746 |
ceres_test(normal_prior)
|
|
Packit |
ea1746 |
ceres_test(numeric_diff_cost_function)
|
|
Packit |
ea1746 |
ceres_test(ordered_groups)
|
|
Packit |
ea1746 |
ceres_test(parameter_block)
|
|
Packit |
ea1746 |
ceres_test(parameter_block_ordering)
|
|
Packit |
ea1746 |
ceres_test(partitioned_matrix_view)
|
|
Packit |
ea1746 |
ceres_test(polynomial)
|
|
Packit |
ea1746 |
ceres_test(problem)
|
|
Packit |
ea1746 |
ceres_test(program)
|
|
Packit |
ea1746 |
ceres_test(reorder_program)
|
|
Packit |
ea1746 |
ceres_test(residual_block)
|
|
Packit |
ea1746 |
ceres_test(residual_block_utils)
|
|
Packit |
ea1746 |
ceres_test(rotation)
|
|
Packit |
ea1746 |
ceres_test(schur_complement_solver)
|
|
Packit |
ea1746 |
ceres_test(schur_eliminator)
|
|
Packit |
ea1746 |
ceres_test(single_linkage_clustering)
|
|
Packit |
ea1746 |
ceres_test(small_blas)
|
|
Packit |
ea1746 |
ceres_test(solver)
|
|
Packit |
ea1746 |
ceres_test(sparse_cholesky)
|
|
Packit |
ea1746 |
ceres_test(sparse_normal_cholesky_solver)
|
|
Packit |
ea1746 |
ceres_test(system)
|
|
Packit |
ea1746 |
ceres_test(triplet_sparse_matrix)
|
|
Packit |
ea1746 |
ceres_test(trust_region_minimizer)
|
|
Packit |
ea1746 |
ceres_test(trust_region_preprocessor)
|
|
Packit |
ea1746 |
ceres_test(visibility)
|
|
Packit |
ea1746 |
ceres_test(visibility_based_preconditioner)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
# Put the large end to end test last.
|
|
Packit |
ea1746 |
ceres_test(bundle_adjustment)
|
|
Packit |
ea1746 |
|
|
Packit |
ea1746 |
endif (BUILD_TESTING AND GFLAGS)
|