| 109 | } |
| 110 | |
| 111 | void matrix_double_serialize(const matrix<double>& m, const std::string& file) |
| 112 | { |
| 113 | serialize(file) << m; |
| 114 | } |
| 115 | |
| 116 | void matrix_double_deserialize(matrix<double>& m, const std::string& file) |
| 117 | { |
nothing calls this directly
no test coverage detected