1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #include "ceres/sparse_matrix.h"
- namespace ceres::internal {
- SparseMatrix::~SparseMatrix() = default;
- void SparseMatrix::SquaredColumnNorm(double* x,
- ContextImpl* context,
- int num_threads) const {
- (void)context;
- (void)num_threads;
- SquaredColumnNorm(x);
- }
- void SparseMatrix::ScaleColumns(const double* scale,
- ContextImpl* context,
- int num_threads) {
- (void)context;
- (void)num_threads;
- ScaleColumns(scale);
- }
- }
|