$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Seth (bugs_at_[hidden])
Date: 2024-09-24 22:12:09
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
```