-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkovlib.lua
57 lines (42 loc) · 879 Bytes
/
markovlib.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
local markov = {}
local function escape(text)
return text:gsub("(%W)", "%%%1")
end
local function markovkey(t) -- t is a replacements table
return function (t, i)
i = i + 1
if t[i] == nil then return nil end
key = next(t[i])
if key == "terminating" then
key = next(t[i], "terminating")
end
if key == nil then
return nil
end
if t[i]["terminating"] == true then
return i, key, true
end
return i, key, false
end, t, 0
end
function markov.iterate(string, replacements)
local key = ""
local tab = 0
local term = true
local subs = false
for t, k, tm in markovkey(replacements) do
string, n = string.gsub(string, escape(k), replacements[t][k], 1)
if n == 1 then
subs = true
key = k
tab = t
term = tm
break
end
end
if subs == false then
return string
end
return string, tab, key, term
end
return markov