
24 Sep
2024
24 Sep
'24
10:12 p.m.
On Fri, Sep 20, 2024, at 10:34 PM, Alfredo Correa via Boost wrote:
Thanks,
I did have to supply free function overloads for `rotate` to make the `lu_fact.cpp` example compile. Did something break? This is what I added: ``` namespace boost::multi { template <typename T, size_t D> decltype(auto) rotated(multi::array<T, D> const& A) { return A.rotated(); } template <typename T, size_t D> decltype(auto) rotated(multi::subarray<T, D> const& A) { return A.rotated(); } } // namespace boost::multi ```