Fix bug in calculation of d1 in Tuple[]

This commit is contained in:
Christopher Berner 2019-01-26 22:12:59 -08:00
parent 7355a6e8b2
commit 74a77480fb

@ -70,7 +70,7 @@ pub fn intermediate_tuple(source_block_symbols: u32, internal_symbol_id: u32) ->
let mut d1 = 2;
if d < 4 {
let d1 = 2 + rand(internal_symbol_id, 3, 2);
d1 = 2 + rand(internal_symbol_id, 3, 2);
}
let a1 = 1 + rand(internal_symbol_id, 4, P1-1);