123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // -*- mode: c++; coding: utf-8 -*-
- /// @file expr.hh
- /// @brief Operator nodes for expression templates.
- // (c) Daniel Llorens - 2011-2014, 2016-2017, 2019
- // This library is free software; you can redistribute it and/or modify it under
- // the terms of the GNU Lesser General Public License as published by the Free
- // Software Foundation; either version 3 of the License, or (at your option) any
- // later version.
- #pragma once
- #include "ra/ply.hh"
- #include "ra/wrank.hh"
- namespace ra {
- // Manipulate ET through flat (raw pointer-like) iterators P ...
- template <class Op, class T, class I=mp::iota<mp::len<T>>> struct Flat;
- template <class Op, class T, int ... I>
- struct Flat<Op, T, mp::int_list<I ...>>
- {
- Op & op;
- T t;
- template <class S> constexpr void operator+=(S const & s) { ((std::get<I>(t) += std::get<I>(s)), ...); }
- constexpr decltype(auto) operator*() { return op(*std::get<I>(t) ...); }
- };
- template <class Op, class ... P> inline constexpr auto
- flat(Op & op, P && ... p)
- {
- return Flat<Op, std::tuple<P ...>> { op, std::tuple<P ...> { std::forward<P>(p) ... } };
- }
- // forward decl in atom.hh
- template <class Op, class ... P, int ... I>
- struct Expr<Op, std::tuple<P ...>, mp::int_list<I ...>>: public Match<std::tuple<P ...>>
- {
- using Match_ = Match<std::tuple<P ...>>;
- Op op;
- // test/ra-9.cc [ra1] for forward() here.
- constexpr Expr(Op op_, P ... p_): Match_(std::forward<P>(p_) ...), op(std::forward<Op>(op_)) {}
- template <class J> constexpr decltype(auto)
- at(J const & i)
- {
- return op(std::get<I>(this->t).at(i) ...);
- }
- constexpr decltype(auto)
- flat()
- {
- return ra::flat(op, std::get<I>(this->t).flat() ...);
- }
- // needed for xpr with rank_s()==RANK_ANY, which don't decay to scalar when used as operator arguments.
- using scalar = decltype(*(ra::flat(op, std::get<I>(Match_::t).flat() ...)));
- operator scalar()
- {
- if constexpr (this->rank_s()!=1 || size_s(*this)!=1) { // for coord types; so fixed only
- if constexpr (this->rank_s()!=0) {
- static_assert(this->rank_s()==RANK_ANY);
- assert(this->rank()==0);
- }
- }
- return *flat();
- }
- FOR_EACH(RA_DEF_ASSIGNOPS, =, *=, +=, -=, /=)
- };
- template <class V, class ... T, int ... i> inline constexpr auto
- expr_verb(mp::int_list<i ...>, V && v, T && ... t)
- {
- using FM = Framematch<V, std::tuple<T ...>>;
- return expr(FM::op(std::forward<V>(v)), reframe<mp::ref<typename FM::R, i>>(std::forward<T>(t)) ...);
- }
- template <class Op, class ... P> inline constexpr auto
- expr(Op && op, P && ... p)
- {
- if constexpr (is_verb<Op>) {
- return expr_verb(mp::iota<sizeof...(P)> {}, std::forward<Op>(op), std::forward<P>(p) ...);
- } else {
- return Expr<Op, std::tuple<P ...>> { std::forward<Op>(op), std::forward<P>(p) ... };
- }
- }
- template <class Op, class ... A> inline constexpr auto
- map(Op && op, A && ... a)
- {
- return expr(std::forward<Op>(op), start(std::forward<A>(a)) ...);
- }
- template <class Op, class ... A> inline constexpr void
- for_each(Op && op, A && ... a)
- {
- ply(map(std::forward<Op>(op), std::forward<A>(a) ...));
- }
- } // namespace ra
|