123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #ifndef CERES_PUBLIC_CRS_MATRIX_H_
- #define CERES_PUBLIC_CRS_MATRIX_H_
- #include <vector>
- #include "ceres/internal/disable_warnings.h"
- #include "ceres/internal/export.h"
- namespace ceres {
- struct CERES_EXPORT CRSMatrix {
- CRSMatrix() = default;
- int num_rows{0};
- int num_cols{0};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- std::vector<int> cols;
- std::vector<int> rows;
- std::vector<double> values;
- };
- }
- #include "ceres/internal/reenable_warnings.h"
- #endif
|