Skip to content

Commit

Permalink
remove stale todos
Browse files Browse the repository at this point in the history
  • Loading branch information
maramihali committed May 31, 2024
1 parent be1f215 commit 77f0b38
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -672,8 +672,7 @@ template <typename Builder> bb::fr field_t<Builder>::get_value() const
template <typename Builder> bool_t<Builder> field_t<Builder>::operator==(const field_t& other) const
{
Builder* ctx = (context == nullptr) ? other.context : context;
info(other.get_value());
info((*this).get_value());

if (is_constant() && other.is_constant()) {
return (get_value() == other.get_value());
}
Expand All @@ -694,8 +693,6 @@ template <typename Builder> bool_t<Builder> field_t<Builder>::operator==(const f

const field_t t1 = r.madd(-x + 1, x);
const field_t t2 = diff.madd(t1, r - 1);
info(t1.get_value());
info(t2.get_value());
t2.assert_equal(0);

return result;
Expand Down

0 comments on commit 77f0b38

Please sign in to comment.