浏览代码

bigint::monty: simplify modpow zero test

Josh Stone 7 年之前
父节点
当前提交
b380880ed3
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      bigint/src/monty.rs

+ 2 - 3
bigint/src/monty.rs

@@ -1,5 +1,5 @@
 use integer::Integer;
-use traits::{Zero, One};
+use traits::Zero;
 
 use biguint::BigUint;
 
@@ -116,8 +116,7 @@ pub fn monty_modpow(a: &BigUint, exp: &BigUint, modulus: &BigUint) -> BigUint{
     // Binary exponentiation
     let mut ans = &r % mr.p;
     let mut e = exp.clone();
-    let zero = Zero::zero();
-    while e > zero {
+    while !e.is_zero() {
         if e.is_odd() {
             ans = monty_mult(ans, &apri, &mr);
         }