From 0e80c7bd7c9e154023e93014e057a0eb10c561cc Mon Sep 17 00:00:00 2001 From: vhnatyk Date: Tue, 4 Apr 2023 21:15:21 +0200 Subject: [PATCH] minor --- fast-danksharding/src/fast_danksharding.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fast-danksharding/src/fast_danksharding.rs b/fast-danksharding/src/fast_danksharding.rs index 764ef5e..5d2d9c1 100644 --- a/fast-danksharding/src/fast_danksharding.rs +++ b/fast-danksharding/src/fast_danksharding.rs @@ -29,6 +29,9 @@ pub fn main_flow() { //TODO: now S is preprocessed, copy preprocessing here let S = get_debug_data_points_proj_xy1_vec("S.csv", 2 * M_POINTS); + let mut d0 = vec![S; 2 * N_ROWS].concat(); + let mut d1 = vec![Point::infinity(); (2 * N_ROWS) * (2 * M_POINTS / l)]; + let mut q_ = Vec::>::new(); const l: usize = 16; @@ -245,8 +248,6 @@ pub fn main_flow() { println!("Branch 3"); //////////////////////////////// - let mut d0 = vec![S; 2 * N_ROWS].concat(); - let mut d1 = vec![Point::infinity(); (2 * N_ROWS) * (2 * M_POINTS / l)]; let D_b4rbo = D_b4rbo.concat(); let br3_time = Instant::now();