mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-08 08:43:06 +00:00
fix
This commit is contained in:
parent
062eb82a8b
commit
f1ad3da8eb
@ -1,3 +1,4 @@
|
||||
use std::cmp::Ordering;
|
||||
use std::fs::File;
|
||||
use std::io::{BufRead, BufReader};
|
||||
use std::path::PathBuf;
|
||||
@ -275,7 +276,7 @@ fn test_cmp_bignum_all() -> Result<()> {
|
||||
let a = gen_bignum(bit_size);
|
||||
let b = gen_bignum(bit_size);
|
||||
let output = match a.cmp(&b) {
|
||||
Ordering::Less => U256::MINUS_ONE,
|
||||
Ordering::Less => MINUS_ONE,
|
||||
Ordering::Equal => 0.into(),
|
||||
Ordering::Greater => 1.into(),
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user