Skip to content

Commit de1515e

Browse files
authored
Merge branch 'master' into master
2 parents 17e9166 + 0d7272f commit de1515e

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
### Bugfixes
1212

1313
- [\#156](https://github.com/arkworks-rs/r1cs-std/pull/156) Fix panic in `impl Sum for FpVar`
14+
- [\#198](https://github.com/arkworks-rs/r1cs-std/pull/198) Remove duplicate native cases in run_binary_exhaustive_both
1415

1516
## v0.5.0
1617

src/uint/test_utils.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ where
111111
for (mode_a, a) in test_utils::combination(T::min_value()..=T::max_value()) {
112112
for (mode_b, b) in test_utils::combination(T::min_value()..=T::max_value()) {
113113
test_binary_op(a, b, mode_a, mode_b, test)?;
114+
}
115+
for b in T::min_value()..=T::max_value() {
114116
test_binary_op_with_native(a, b, mode_a, test_native)?;
115117
}
116118
}

0 commit comments

Comments
 (0)