Skip to content
Snippets Groups Projects
Commit 0e9baff3 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[cleanup]Replace Dune::Std::apply by std::apply

parent edda4db7
No related branches found
No related tags found
1 merge request!143[cleanup]Avoid deprecated interfaces from the core modules
......@@ -9,7 +9,6 @@
#include <dune/common/fvector.hh>
#include <dune/common/fmatrix.hh>
#include <dune/common/hybridutilities.hh>
#include <dune/common/std/apply.hh>
#include <dune/common/concept.hh>
#include <dune/istl/matrix.hh>
......@@ -38,7 +37,7 @@ namespace Concept {
template<class F>
auto require(F&& f) -> decltype(
Dune::Std::apply(f, args)
std::apply(f, args)
);
};
......@@ -54,7 +53,7 @@ namespace Concept {
template<class F>
auto require(F&& f) -> decltype(
Dune::MatrixVector::addProduct(r, s, Dune::Std::apply(f, args))
Dune::MatrixVector::addProduct(r, s, std::apply(f, args))
);
};
......@@ -255,7 +254,7 @@ public:
};
Dune::MatrixVector::addProduct(
localMatrix[i][j], z,
Dune::Std::apply(boundContraction, returnValues));
std::apply(boundContraction, returnValues));
}
}
}
......
......@@ -12,9 +12,9 @@
#include <string>
#include <sstream>
#include <type_traits>
#include <tuple>
#include <dune/common/exceptions.hh>
#include <dune/common/std/apply.hh>
#include <dune/functions/common/signature.hh>
#include <dune/functions/common/differentiablefunctionfromcallables.hh>
......@@ -570,7 +570,7 @@ auto makeDifferentiableFunction(const R&... f)
auto signatureTag = Dune::Functions::SignatureTag<Signature, DerivativeTraits>();
auto derivativeSignatureTags = Dune::Functions::derivativeSignatureTags<sizeof...(f)-1>(signatureTag);
return Dune::Std::apply([&f..., &signatureTag](auto... tag) {
return std::apply([&f..., &signatureTag](auto... tag) {
return Dune::Functions::makeDifferentiableFunctionFromCallables(signatureTag,
makeFunction<typename decltype(tag)::Signature>(f)...);
}, derivativeSignatureTags);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment