Prenecklace - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Iterator

  

Prenecklace

  

generate prenecklaces

 

Calling Sequence

Parameters

Options

Description

Examples

References

Compatibility

Calling Sequence

Prenecklace(n, m, opts)

Parameters

n

-

nonnegint; length of prenecklace

m

-

nonnegint; size of alphabet

opts

-

(optional) equation(s) of the form option = value; specify options for the Prenecklace command

Options

• 

compile = truefalse

  

True means compile the iterator. The default is true.

Description

• 

The Prenecklace command returns an iterator that generates all m-ary prenecklaces of length n, in lexicographic order. The alphabet consists of the integers from 0 to m1.

• 

A prenecklace is a word that is a prefix to a necklace. A necklace is an equivalence class of strings under rotation. The representative of a class is the smallest string, lexicographically, in the class.

Methods

In addition to the common iterator methods, this iterator object has the following methods. The self parameter is the iterator object.

• 

Number(self): return the number of iterations required to step through the iterator, assuming it started at rank one.

Examples

withIterator:

Create an iterator that generates all prenecklaces of length 4 in an alphabet with 2 characters.

PPrenecklace4,2:

PrintP,showrank:

1: 0 0 0 0
2: 0 0 0 1
3: 0 0 1 0
4: 0 0 1 1
5: 0 1 0 1
6: 0 1 1 0
7: 0 1 1 1
8: 1 1 1 1

Compute the number of iterations.

NumberP

8

(1)

References

  

Knuth, Donald Ervin. The Art of Computer Programming, volume 4, fascicle 2; generating all tuples and permutations, sec. 7.2.1.1, generating all n-tuples, pp. 26-27.

  

ibid, Algorithm F, prime and preprime string generation, p. 27.

  

Practical Algorithms to Rank Necklaces, Lyndon Words, and de Bruijn Sequences, Joe Sawada and Aaron Williams, Journal of Discrete Algorithms, vol. 43, March 2017, pp. 95-110.

Compatibility

• 

The Iterator[Prenecklace] command was introduced in Maple 2020.

• 

For more information on Maple 2020 changes, see Updates in Maple 2020.

• 

The Iterator[Prenecklace] command was updated in Maple 2022.

• 

The n and m parameters were updated in Maple 2022.

See Also

DeBruijn

Iterator

LyndonWord

Necklace