Skip to content
Snippets Groups Projects
Commit 41e377ab authored by E__Man's Association's avatar E__Man's Association
Browse files

Fix: MemoryRng not working when used by mut ref

parent 015684a4
No related branches found
No related tags found
No related merge requests found
......@@ -199,4 +199,11 @@ where
{
(**self).next_bytes(f)
}
fn draw_alpha<F: Field>(&mut self) -> F {
(**self).draw_alpha()
}
fn draw_positions(&mut self, count: usize, domain_size: usize) -> Vec<usize> {
(**self).draw_positions(count, domain_size)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment