Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
vhnatyk committed Apr 4, 2023
1 parent 0b80bc7 commit 0e80c7b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fast-danksharding/src/fast_danksharding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::<Vec<Point>>::new();
const l: usize = 16;

Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 0e80c7b

Please sign in to comment.