浏览代码

bigint::monty: simplify work space allocation

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

+ 1 - 4
bigint/src/monty.rs

@@ -1,4 +1,3 @@
-use std::iter::repeat;
 use integer::Integer;
 use traits::{Zero, One};
 
@@ -62,11 +61,9 @@ fn monty_redc(a: BigUint, mr: &MontyReducer) -> BigUint {
     let mut c = a.data;
     let n = &mr.n;
     let n_size = n.len();
-    let old_size = c.len();
 
     // Allocate sufficient work space
-    c.reserve(2*n_size+2-old_size);
-    c.extend(repeat(0).take(2*n_size+2-old_size));
+    c.resize(2 * n_size + 2, 0);
 
     // β is the size of a word, in this case 32 bits. So "a mod β" is
     // equivalent to masking a to 32 bits.