A change
Changes permute a row in order to generate the next row. They should be constructed using changeFromNotation().
changeFromNotation()
> const row = Pricker.rounds(Pricker.Stage.Triples);[1, 2, 3, 4, 5, 6, 7]> const change = Pricker.changeFromNotation('1', Pricker.Stage.Triples);1> change(row);[1, 3, 2, 5, 4, 7, 6] Copy
> const row = Pricker.rounds(Pricker.Stage.Triples);[1, 2, 3, 4, 5, 6, 7]> const change = Pricker.changeFromNotation('1', Pricker.Stage.Triples);1> change(row);[1, 3, 2, 5, 4, 7, 6]
A change
Changes permute a row in order to generate the next row. They should be constructed using
changeFromNotation().