Skip to content
Snippets Groups Projects
Commit edc492c5 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'issue/bugfixes' into 'develop'

missing file added

See merge request spraetor/dune-amdis!9
parents 9e3a3cbc 54c91841
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ install(FILES
Basic.hpp
CMath.hpp
Composer.hpp
Composer.impl.hpp
FieldMatVec.hpp
MaxMin.hpp
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/amdis/operations)
#pragma once
#include <amdis/operations/Composer.hpp>
#include <amdis/operations/Arithmetic.hpp>
namespace AMDiS { namespace Operation {
/// Partial derivative of composed function:
/// Implements: // sum_i [ d_i(f)[g...] * d_j(g_i) ]
template <int J, class F, class... Gs>
auto partial(Composer<F,Gs...> const& c, index_t<J> _j)
{
auto index_seq = MakeSeq_t<sizeof...(Gs)>{};
// d_i(f)[g...] * d_j(g_i)
auto term_i = [&](auto const _i)
{
auto di_f = Dune::Std::apply([&](auto const&... gs) {
return compose(partial(c.f_, _i), gs...);
}, c.gs_);
auto const& g_i = std::get<_i>(c.gs_);
return compose(Multiplies{}, di_f, partial(g_i, _j));
};
// sum_i [ d_i(f)[g...] * d_j(g_i) ]
return Dune::Std::apply([&](auto const... _i)
{
return compose(Plus{}, term_i(_i)...);
}, index_seq);
}
}} // end namespace AMDiS::Operation
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