Skip to content

Commit

Permalink
Fix deprecated warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dsarmany committed Dec 14, 2022
1 parent 704b014 commit dc5ec7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/multio/tools/multio-maestro-syphon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ MaestroSyphon::MaestroSyphon(int argc, char** argv) :
options_.push_back(new eckit::option::FactoryOption<mir::key::style::MIRStyleFactory>("style", "Select how the interpolations are performed"));
options_.push_back(new eckit::option::FactoryOption<mir::caching::legendre::LegendreLoaderFactory>("legendre-loader", "Select the scheme to load coefficients"));
options_.push_back(new eckit::option::FactoryOption<mir::caching::matrix::MatrixLoaderFactory>("matrix-loader", "Select the scheme to load matrix weights"));
options_.push_back(new eckit::option::FactoryOption<eckit::linalg::LinearAlgebra>("backend", "Linear algebra backend (default '" + eckit::linalg::LinearAlgebra::backend().name() + "')"));
options_.push_back(new eckit::option::FactoryOption<eckit::linalg::LinearAlgebraDense>("dense-backend", "Linear algebra dense backend (default '" + eckit::linalg::LinearAlgebraDense::backend().name() + "')"));
options_.push_back(new eckit::option::FactoryOption<eckit::linalg::LinearAlgebraSparse>("sparse-backend", "Linear algebra sparse backend (default '" + eckit::linalg::LinearAlgebraSparse::backend().name() + "')"));
options_.push_back(new eckit::option::FactoryOption<mir::search::TreeFactory>("point-search-trees", "k-d tree control"));

options_.push_back(new eckit::option::SimpleOption<std::string>("directory", "Output directory (default current directory)"));
Expand Down

0 comments on commit dc5ec7e

Please sign in to comment.