Skip to content

Instantly share code, notes, and snippets.

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>>();