Skip to content

Commit ccbdd21

Browse files
committed
again
1 parent dcb7983 commit ccbdd21

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

include/t81/linalg/gemm.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ namespace t81::linalg {
2424
#endif
2525
}
2626

27-
inline constexpr auto build_tryte_contributions()
28-
-> std::array<std::array<double, 27>, core::limb::TRYTES> {
27+
inline constexpr auto build_tryte_contributions() -> std::array<
28+
std::array<double, 27>, core::limb::TRYTES> {
2929
std::array<std::array<double, 27>, core::limb::TRYTES> table{};
3030
double weight = 1.0;
3131
for (std::size_t position = 0; position < core::limb::TRYTES; ++position) {
@@ -36,7 +36,7 @@ namespace t81::linalg {
3636
}
3737
weight *= 27.0;
3838
}
39-
return table;
39+
return table;
4040
}
4141

4242
inline const auto &tryte_contribution_table() {

0 commit comments

Comments
 (0)