We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcb7983 commit ccbdd21Copy full SHA for ccbdd21
1 file changed
include/t81/linalg/gemm.hpp
@@ -24,8 +24,8 @@ namespace t81::linalg {
24
#endif
25
}
26
27
- inline constexpr auto build_tryte_contributions()
28
- -> std::array<std::array<double, 27>, core::limb::TRYTES> {
+ inline constexpr auto build_tryte_contributions() -> std::array<
+ std::array<double, 27>, core::limb::TRYTES> {
29
std::array<std::array<double, 27>, core::limb::TRYTES> table{};
30
double weight = 1.0;
31
for (std::size_t position = 0; position < core::limb::TRYTES; ++position) {
@@ -36,7 +36,7 @@ namespace t81::linalg {
36
37
weight *= 27.0;
38
39
- return table;
+ return table;
40
41
42
inline const auto &tryte_contribution_table() {
0 commit comments