Generates sequences of a fixed length from a usage profile. This command first generates all sequences of the desired lengths and then draws from them according to the probability each sequence has in the usage profile. Generating all possible sequences is exponential in the length of the sequences, therefore, this command does not scale well in the parameter ! $USAGE$ name of the usage profile from which the sequences are generated name of the sequences that are generated minimal length of a sequence maximal length of a sequence optional; if true, all possible sequences are generated and the parameter is ignored; default: true optional; number of sequences to be generated; no default, has to be defined if is false optional; if true, only sequences that finish in the global END state are allowed; default: true Example(s): generateFixedLengthSequences markovModel generated_sequences 5 7 generateFixedLengthSequences markovModel generated_sequences 5 7 false 500 generateFixedLengthSequences markovModel generated_sequences 5 7 false 500 false