This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MarkovNameGenerator | |
{ | |
private int m_order = 1; | |
private int m_minLength = 9999999; | |
private int m_maxLength = 0; | |
Random m_random = new Random(); | |
private List<string> m_samples = null; | |
private Dictionary<string, List<string>> m_chains = new Dictionary<string,List<string>>(); | |