Skip to content

Commit

Permalink
Fix: Swap order of terms in product optimization to match expected ou…
Browse files Browse the repository at this point in the history
…tput
  • Loading branch information
devin-ai-integration[bot] authored and ohhmm committed Feb 13, 2025
1 parent 44bef2a commit e3e965b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omnn/math/Modulo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ void Modulo::optimize() {
Modulo(
Modulo(
Product({
Modulo(first, _2), // first is 2_v
Modulo(second, _2) // second is v1
Modulo(second, _2), // second is v1
Modulo(first, _2) // first is 2_v
}),
_2
),
Expand Down

0 comments on commit e3e965b

Please sign in to comment.