8 const std::set<std::string>& valid_options,
9 const std::string& parameter_name)
11 if (valid_options.find(value) == valid_options.end()) {
12 std::string valid_list =
13 std::accumulate(std::next(valid_options.begin()),
15 std::string(
"'") + *valid_options.begin() +
"'",
16 [](
const std::string& a,
const std::string& b) {
17 return a +
", '" + b +
"'";
20 throw std::invalid_argument(
"Invalid " + parameter_name +
": '" + value +
21 "'. Must be one of: " + valid_list);
32subset(
const Eigen::SparseMatrix<double>& x,
const std::vector<int>& indices)
34 std::vector<Eigen::Triplet<double>> triplets;
35 triplets.reserve(x.nonZeros());
37 for (
int j = 0; j < x.cols(); ++j) {
38 for (Eigen::SparseMatrix<double>::InnerIterator it(x, j); it; ++it) {
39 auto it_idx = std::find(indices.begin(), indices.end(), it.row());
41 if (it_idx != indices.end()) {
42 int new_row = std::distance(indices.begin(), it_idx);
43 triplets.emplace_back(new_row, j, it.value());
47 Eigen::SparseMatrix<double> out(indices.size(), x.cols());
48 out.setFromTriplets(triplets.begin(), triplets.end());
61 const std::vector<int>& indices)
63 std::vector<Eigen::Triplet<double>> triplets;
64 triplets.reserve(x.nonZeros());
66 for (
size_t j_idx = 0; j_idx < indices.size(); ++j_idx) {
67 int j = indices[j_idx];
68 for (Eigen::SparseMatrix<double>::InnerIterator it(x, j); it; ++it) {
69 triplets.emplace_back(it.row(), j_idx, it.value());
72 Eigen::SparseMatrix<double> out(x.rows(), indices.size());
73 out.setFromTriplets(triplets.begin(), triplets.end());
void validateOption(const std::string &value, const std::set< std::string > &valid_options, const std::string ¶meter_name)
Validates if a given value exists in a set of valid options.