Skip to content

Commit

Permalink
fix #6969, again
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Oct 30, 2023
1 parent a957a56 commit 160971d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/math/lp/nla_grobner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ namespace nla {
auto ql = q;
while (!ql.is_val()) {
lc = lcm(lc, denominator(ql.hi().val()));
ql = q.lo();
ql = ql.lo();
}
lc = lcm(denominator(ql.val()), lc);

Expand Down

0 comments on commit 160971d

Please sign in to comment.