Skip to content

[simd.math] Fix indentation and whitespace improvements #8099

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -19483,7 +19483,7 @@
template<class... Args>
Ret @\placeholder{math-func-vec}@(Args... args) {
return Ret([&](@\exposid{simd-size-type}@ i) {
@\placeholder{math-func}@(@\exposid{make-compatible-simd-t}@<Ret, Args>(args)[i]...);
@\placeholder{math-func}@(@\exposid{make-compatible-simd-t}@<Ret, Args>(args)[i]...);
});
}
\end{codeblock}
Expand Down Expand Up @@ -19593,12 +19593,10 @@
constexpr @\exposid{math-common-simd-t}@<V0, V1, V2> lerp(const V0& a, const V1& b, const V2& t) noexcept;
template<@\exposconcept{math-floating-point}@ V>
@\exposid{deduced-vec-t}@<V> assoc_laguerre(const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& n, const
rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m,
const V& x);
rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
template<@\exposconcept{math-floating-point}@ V>
@\exposid{deduced-vec-t}@<V> assoc_legendre(const rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& l, const
rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m,
const V& x);
rebind_t<unsigned, @\exposid{deduced-vec-t}@<V>>& m, const V& x);
template<class V0, class V1>
@\exposid{math-common-simd-t}@<V0, V1> beta(const V0& x, const V1& y);
template<@\exposconcept{math-floating-point}@ V> @\exposid{deduced-vec-t}@<V> comp_ellint_1(const V& k);
Expand Down Expand Up @@ -19646,7 +19644,7 @@
template<class... Args>
Ret @\placeholder{math-func-vec}@(Args... args) {
return Ret([&](@\exposid{simd-size-type}@ i) {
@\placeholder{math-func}@(@\exposid{make-compatible-simd-t}@<Ret, Args>(args)[i]...);
@\placeholder{math-func}@(@\exposid{make-compatible-simd-t}@<Ret, Args>(args)[i]...);
});
}
\end{codeblock}
Expand Down Expand Up @@ -19744,7 +19742,7 @@
\begin{itemdecl}
template<class T, class Abi>
constexpr basic_vec<T, Abi> modf(const type_identity_t<basic_vec<T, Abi>>& value,
basic_vec<T, Abi>* iptr);
basic_vec<T, Abi>* iptr);
\end{itemdecl}

\begin{itemdescr}
Expand Down