-
Notifications
You must be signed in to change notification settings - Fork 51
/
fuzzy_test.go
423 lines (374 loc) · 23 KB
/
fuzzy_test.go
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
package fuzzy
import (
"fmt"
"reflect"
"runtime"
"strings"
"sync"
"testing"
"time"
)
var sampleEnglish []string
func init() {
sampleEnglish = SampleEnglish()
}
func TestSpelling(t *testing.T) {
model := NewModel()
// For testing only, this is not advisable on production
model.SetThreshold(1)
// Train multiple words simultaneously
words := []string{"bob", "your", "uncle", "dynamite", "delicate", "biggest", "big", "bigger", "aunty", "you're", "bob", "your"}
model.Train(words)
// Check Spelling
if model.SpellCheck("yor") != "your" {
t.Errorf("Spell check: Single char delete failed")
}
if model.SpellCheck("uncel") != "uncle" {
t.Errorf("Spell check: Single char transpose failed")
}
if model.SpellCheck("dynemite") != "dynamite" {
t.Errorf("Spell check: Single char swap failed")
}
if model.SpellCheck("dellicate") != "delicate" {
t.Errorf("Spell check: Single char insertion failed")
}
if model.SpellCheck("dellicade") != "delicate" {
t.Errorf("Spell check: Two char change failed")
}
}
func TestSpellingSuggestions(t *testing.T) {
model := NewModel()
// For testing only, this is not advisable on production
model.SetThreshold(1)
// Train multiple words simultaneously
words := []string{"bob", "your", "uncle", "dynamite", "delicate", "biggest", "biggest", "big", "bigger", "aunty", "you're", "bob", "your"}
model.Train(words)
// Check Spelling
if model.SpellCheckSuggestions("yor", 2)[0] != "your" {
t.Errorf("Spell check: Single char delete failed")
}
if model.SpellCheckSuggestions("uncel", 2)[0] != "uncle" {
t.Errorf("Spell check: Single char transpose failed")
}
if model.SpellCheckSuggestions("dynemite", 2)[0] != "dynamite" {
t.Errorf("Spell check: Single char swap failed")
}
if model.SpellCheckSuggestions("dellicate", 2)[0] != "delicate" {
t.Errorf("Spell check: Single char insertion failed")
}
if model.SpellCheckSuggestions("dellicade", 2)[0] != "delicate" {
t.Errorf("Spell check: Two char change failed")
}
suggestions := model.SpellCheckSuggestions("bigge", 2)
if suggestions[0] != "bigger" {
t.Errorf("Spell check suggestions, Single char delete is closest")
}
// "biggest" should be before "big" since it appears twice
if suggestions[1] != "biggest" {
t.Errorf("Spell check suggestions, Double char delete 2nd closest")
}
}
func TestSuggestions(t *testing.T) {
model := NewModel()
// For testing only, this is not advisable on production
model.SetThreshold(1)
// Train multiple words simultaneously
words := []string{"bob", "your", "uncle", "dynamite", "delicate", "biggest", "big", "bigger", "aunty", "you're"}
model.Train(words)
// Train word by word
model.TrainWord("single")
// Suggest completions
potential := model.Suggestions("bigge", false)
bigger := false
biggest := false
for _, term := range potential {
if term == "bigger" {
bigger = true
}
if term == "biggest" {
biggest = true
}
}
if !biggest || !bigger {
t.Errorf("Suggestions are missing values that should be there")
}
}
func TestManualTermAddition(t *testing.T) {
model := NewModel()
model.SetThreshold(4)
model.SetCount("elephant", 10, true)
if model.SpellCheck("elphant") != "elephant" {
t.Errorf("Spell check: manual term addition didn't work")
}
}
// Not exhaustive, but shows training and spell checks can run concurrently
func TestConcurrency(t *testing.T) {
cpu := runtime.NumCPU()
runtime.GOMAXPROCS(cpu)
model := NewModel()
piece := len(sampleEnglish) / cpu
var wg sync.WaitGroup
// Train concurrently
for i := 0; i < cpu; i++ {
wg.Add(1)
go func(i int) {
begin := i * piece
end := (i+1)*piece - 1
model.Train(sampleEnglish[begin:end])
wg.Done()
}(i)
}
wg.Wait()
// Test concurrently
words := []string{"bob", "your", "uncle", "dynmite", "delidate", "bgigest", "bigr", "biger", "arnty", "you're"}
for i := 0; i < cpu; i++ {
wg.Add(1)
go func() {
for _, word := range words {
model.SpellCheck(word)
}
wg.Done()
}()
}
wg.Wait()
}
func TestColdInit(t *testing.T) {
model := NewModel()
_, err := model.Autocomplete("a")
if err != nil {
t.Errorf("Failed to init and autocomplete: %v", err)
}
}
// Accuracy test sets come from Peter Norvig's set
// The big.txt file is also from Peter Norvig's set. This helps to define a decent
// dictionary, although it is still missing some of the common words in the test sets
// We aim for > 60% correction success at a rate of > 5000Hz (single threaded)
func TestAccuracy(t *testing.T) {
const test2AccuracyThreshold = .60
tests1 := map[string]string{"access": "acess", "accessing": "accesing", "accommodation": "accomodation acommodation acomodation", "account": "acount", "address": "adress adres", "addressable": "addresable", "arranged": "aranged arrainged",
"arranging": "aranging", "arrangement": "arragment", "articles": "articals",
"aunt": "annt anut arnt", "auxiliary": "auxillary", "available": "avaible",
"awful": "awfall afful", "basically": "basicaly", "beginning": "begining",
"benefit": "benifit", "benefits": "benifits", "between": "beetween", "bicycle": "bicycal bycicle bycycle", "biscuits": "biscits biscutes biscuts bisquits buiscits buiscuts", "built": "biult",
"cake": "cak", "career": "carrer",
"cemetery": "cemetary semetary", "centrally": "centraly", "certain": "cirtain",
"challenges": "chalenges chalenges", "chapter": "chaper chaphter chaptur",
"choice": "choise", "choosing": "chosing", "clerical": "clearical",
"committee": "comittee", "compare": "compair", "completely": "completly",
"consider": "concider", "considerable": "conciderable", "contented": "contenpted contende contended contentid", "curtains": "cartains certans courtens cuaritains curtans curtians curtions", "decide": "descide", "decided": "descided", "definitely": "definately difinately", "definition": "defenition",
"definitions": "defenitions", "description": "discription", "desiccate": "desicate dessicate dessiccate", "diagrammatically": "diagrammaticaally",
"different": "diffrent", "driven": "dirven", "ecstasy": "exstacy ecstacy",
"embarrass": "embaras embarass", "establishing": "astablishing establising",
"experience": "experance experiance", "experiences": "experances", "extended": "extented", "extremely": "extreamly", "fails": "failes", "families": "familes",
"february": "febuary", "further": "futher", "gallery": "galery gallary gallerry gallrey",
"hierarchal": "hierachial", "hierarchy": "hierchy", "inconvenient": "inconvienient inconvient inconvinient", "independent": "independant independant",
"initial": "intial", "initials": "inetials inistals initails initals intials",
"juice": "guic juce jucie juise juse", "latest": "lates latets latiest latist",
"laugh": "lagh lauf laught lugh", "level": "leval",
"levels": "levals", "liaison": "liaision liason", "lieu": "liew", "literature": "litriture", "loans": "lones", "locally": "localy", "magnificent": "magnificnet magificent magnifcent magnifecent magnifiscant magnifisent magnificant",
"management": "managment", "meant": "ment", "minuscule": "miniscule",
"minutes": "muinets", "monitoring": "monitering", "necessary": "neccesary necesary neccesary necassary necassery neccasary", "occurrence": "occurence occurence", "often": "ofen offen offten ofton", "opposite": "opisite oppasite oppesite oppisit oppisite opposit oppossite oppossitte", "parallel": "paralel paralell parrallel parralell parrallell", "particular": "particulaur",
"perhaps": "perhapse", "personnel": "personnell", "planned": "planed", "poem": "poame", "poems": "poims pomes", "poetry": "poartry poertry poetre poety powetry",
"position": "possition", "possible": "possable", "pretend": "pertend protend prtend pritend", "problem": "problam proble promblem proplen",
"pronunciation": "pronounciation", "purple": "perple perpul poarple",
"questionnaire": "questionaire", "really": "realy relley relly", "receipt": "receit receite reciet recipt", "receive": "recieve", "refreshment": "reafreshment refreshmant refresment refressmunt", "remember": "rember remeber rememmer rermember",
"remind": "remine remined", "scarcely": "scarcly scarecly scarely scarsely",
"scissors": "scisors sissors", "separate": "seperate",
"singular": "singulaur", "someone": "somone", "sources": "sorces", "southern": "southen", "special": "speaical specail specal speical", "splendid": "spledid splended splened splended", "standardizing": "stanerdizing", "stomach": "stomac stomache stomec stumache", "supersede": "supercede superceed", "there": "ther",
"totally": "totaly", "transferred": "transfred", "transportability": "transportibility", "triangular": "triangulaur", "understand": "undersand undistand",
"unexpected": "unexpcted unexpeted unexspected", "unfortunately": "unfortunatly", "unique": "uneque", "useful": "usefull", "valuable": "valubale valuble",
"variable": "varable", "variant": "vairiant", "various": "vairious",
"visited": "fisited viseted vistid vistied", "visitors": "vistors",
"voluntary": "volantry", "voting": "voteing", "wanted": "wantid wonted",
"whether": "wether", "wrote": "rote wote"}
tests2 := map[string]string{"forbidden": "forbiden", "decisions": "deciscions descisions",
"supposedly": "supposidly", "embellishing": "embelishing", "technique": "tecnique", "permanently": "perminantly", "confirmation": "confermation",
"appointment": "appoitment", "progression": "progresion", "accompanying": "acompaning", "applicable": "aplicable", "regained": "regined", "guidelines": "guidlines", "surrounding": "serounding", "titles": "tittles", "unavailable": "unavailble", "advantageous": "advantageos", "brief": "brif", "appeal": "apeal", "consisting": "consisiting", "clerk": "cleark clerck", "component": "componant", "favourable": "faverable", "separation": "seperation", "search": "serch", "receive": "recieve", "employees": "emploies", "prior": "piror",
"resulting": "reulting", "suggestion": "sugestion", "opinion": "oppinion",
"cancellation": "cancelation", "criticism": "citisum", "useful": "usful",
"humour": "humor", "anomalies": "anomolies", "would": "whould", "doubt": "doupt", "examination": "eximination", "therefore": "therefoe", "recommend": "recomend", "separated": "seperated", "successful": "sucssuful succesful",
"apparent": "apparant", "occurred": "occureed", "particular": "paerticulaur",
"pivoting": "pivting", "announcing": "anouncing", "challenge": "chalange",
"arrangements": "araingements", "proportions": "proprtions", "organized": "oranised", "accept": "acept", "dependence": "dependance", "unequalled": "unequaled", "numbers": "numbuers", "sense": "sence", "conversely": "conversly", "provide": "provid", "arrangement": "arrangment",
"responsibilities": "responsiblities", "fourth": "forth", "ordinary": "ordenary", "description": "desription descvription desacription",
"inconceivable": "inconcievable", "data": "dsata", "register": "rgister",
"supervision": "supervison", "encompassing": "encompasing", "negligible": "negligable", "allow": "alow", "operations": "operatins", "executed": "executted", "interpretation": "interpritation", "hierarchy": "heiarky",
"indeed": "indead", "years": "yesars", "through": "throut", "committee": "committe", "inquiries": "equiries", "before": "befor", "continued": "contuned", "permanent": "perminant", "choose": "chose", "virtually": "vertually", "correspondence": "correspondance", "eventually": "eventully",
"lonely": "lonley", "profession": "preffeson", "they": "thay", "now": "noe",
"desperately": "despratly", "university": "unversity", "adjournment": "adjurnment", "possibilities": "possablities", "stopped": "stoped", "mean": "meen", "weighted": "wagted", "adequately": "adequattly", "shown": "hown",
"matrix": "matriiix", "profit": "proffit", "encourage": "encorage", "collate": "colate", "disaggregate": "disaggreagte disaggreaget", "receiving": "recieving reciving", "proviso": "provisoe", "umbrella": "umberalla", "approached": "aproached", "pleasant": "plesent", "difficulty": "dificulty", "appointments": "apointments", "base": "basse", "conditioning": "conditining", "earliest": "earlyest", "beginning": "begining", "universally": "universaly",
"unresolved": "unresloved", "length": "lengh", "exponentially": "exponentualy", "utilized": "utalised", "set": "et", "surveys": "servays",
"families": "familys", "system": "sysem", "approximately": "aproximatly",
"their": "ther", "scheme": "scheem", "speaking": "speeking", "repetitive": "repetative", "inefficient": "ineffiect", "geneva": "geniva", "exactly": "exsactly", "immediate": "imediate", "appreciation": "apreciation", "luckily": "luckeley", "eliminated": "elimiated", "believe": "belive", "appreciated": "apreciated", "readjusted": "reajusted", "were": "wer where", "feeling": "fealing", "and": "anf", "false": "faulse", "seen": "seeen", "interrogating": "interogationg", "academically": "academicly", "relatively": "relativly relitivly",
"traditionally": "traditionaly", "studying": "studing",
"majority": "majorty", "build": "biuld", "aggravating": "agravating",
"transactions": "trasactions", "arguing": "aurguing", "sheets": "sheertes",
"successive": "sucsesive sucessive", "segment": "segemnt", "especially": "especaily", "later": "latter", "senior": "sienior", "dragged": "draged",
"atmosphere": "atmospher", "drastically": "drasticaly", "particularly": "particulary", "visitor": "vistor", "session": "sesion", "continually": "contually", "availability": "avaiblity", "busy": "buisy", "parameters": "perametres", "surroundings": "suroundings seroundings", "employed": "emploied", "adequate": "adiquate", "handle": "handel", "means": "meens",
"familiar": "familer", "between": "beeteen", "overall": "overal", "timing": "timeing", "committees": "comittees commitees", "queries": "quies",
"econometric": "economtric", "erroneous": "errounous", "decides": "descides",
"reference": "refereence refference", "intelligence": "inteligence",
"edition": "ediion ediition", "are": "arte", "apologies": "appologies",
"thermawear": "thermawere thermawhere", "techniques": "tecniques",
"voluntary": "volantary", "subsequent": "subsequant subsiquent", "currently": "curruntly", "forecast": "forcast", "weapons": "wepons", "routine": "rouint",
"neither": "niether", "approach": "aproach", "available": "availble",
"recently": "reciently", "ability": "ablity", "nature": "natior",
"commercial": "comersial", "agencies": "agences", "however": "howeverr",
"suggested": "sugested", "career": "carear", "many": "mony", "annual": "anual", "according": "acording", "receives": "recives recieves",
"interesting": "intresting", "expense": "expence", "relevant": "relavent relevaant", "table": "tasble", "throughout": "throuout", "conference": "conferance", "sensible": "sensable", "described": "discribed describd",
"union": "unioun", "interest": "intrest", "flexible": "flexable", "refered": "reffered", "controlled": "controled", "sufficient": "suficient",
"dissension": "desention", "adaptable": "adabtable", "representative": "representitive", "irrelevant": "irrelavent", "unnecessarily": "unessasarily",
"applied": "upplied", "apologised": "appologised", "these": "thees thess",
"choices": "choises", "will": "wil", "procedure": "proceduer", "shortened": "shortend", "manually": "manualy", "disappointing": "dissapoiting",
"excessively": "exessively", "comments": "coments", "containing": "containg",
"develop": "develope", "credit": "creadit", "government": "goverment",
"acquaintances": "aquantences", "orientated": "orentated", "widely": "widly",
"advise": "advice", "difficult": "dificult", "investigated": "investegated",
"bonus": "bonas", "conceived": "concieved", "nationally": "nationaly",
"compared": "comppared compased", "moving": "moveing", "necessity": "nessesity", "opportunity": "oppertunity oppotunity opperttunity", "thoughts": "thorts", "equalled": "equaled", "variety": "variatry", "analysis": "analiss analsis analisis", "patterns": "pattarns", "qualities": "quaties", "easily": "easyly", "organization": "oranisation oragnisation", "the": "thw hte thi",
"corporate": "corparate", "composed": "compossed", "enormously": "enomosly",
"financially": "financialy", "functionally": "functionaly", "discipline": "disiplin", "announcement": "anouncement", "progresses": "progressess",
"except": "excxept", "recommending": "recomending", "mathematically": "mathematicaly", "source": "sorce", "combine": "comibine", "input": "inut",
"careers": "currers carrers", "resolved": "resoved", "demands": "diemands",
"unequivocally": "unequivocaly", "suffering": "suufering", "immediately": "imidatly imediatly", "accepted": "acepted", "projects": "projeccts",
"necessary": "necasery nessasary nessisary neccassary", "journalism": "journaism", "unnecessary": "unessessay", "night": "nite", "output": "oputput", "security": "seurity", "essential": "esential", "beneficial": "benificial benficial", "explaining": "explaning", "supplementary": "suplementary", "questionnaire": "questionare", "employment": "empolyment",
"proceeding": "proceding", "decision": "descisions descision", "per": "pere",
"discretion": "discresion", "reaching": "reching", "analysed": "analised",
"expansion": "expanion", "although": "athough", "subtract": "subtrcat",
"analysing": "aalysing", "comparison": "comparrison", "months": "monthes",
"hierarchal": "hierachial", "misleading": "missleading", "commit": "comit",
"auguments": "aurgument", "within": "withing", "obtaining": "optaning",
"accounts": "acounts", "primarily": "pimarily", "operator": "opertor",
"accumulated": "acumulated", "extremely": "extreemly", "there": "thear",
"summarys": "sumarys", "analyse": "analiss", "understandable": "understadable", "safeguard": "safegaurd", "consist": "consisit",
"declarations": "declaratrions", "minutes": "muinutes muiuets", "associated": "assosiated", "accessibility": "accessability", "examine": "examin",
"surveying": "servaying", "politics": "polatics", "annoying": "anoying",
"again": "agiin", "assessing": "accesing", "ideally": "idealy", "scrutinized": "scrutiniesed", "simular": "similar", "personnel": "personel", "whereas": "wheras", "when": "whn", "geographically": "goegraphicaly", "gaining": "ganing", "requested": "rquested", "separate": "seporate", "students": "studens", "prepared": "prepaired", "generated": "generataed", "graphically": "graphicaly", "suited": "suted", "variable": "varible vaiable", "building": "biulding", "required": "reequired", "necessitates": "nessisitates",
"together": "togehter", "profits": "proffits"}
model := NewModel()
model.SetThreshold(1) // This ensures a more complete dictionary at the expense of size/speed.
model.Train(sampleEnglish)
// Look at test sets
// SET 1
count, correct, incorrect := 0, 0, 0
t2 := time.Now()
for target, testwords := range tests1 {
testwordarr := strings.Split(testwords, " ")
for _, testword := range testwordarr {
if model.SpellCheck(testword) == target {
correct++
} else {
incorrect++
}
count++
}
}
t3 := time.Now()
fmt.Printf("Spell test1 count: %v, Correct: %v, Incorrect: %v, Ratio: %f, Total time: %v \n\n", count, correct, incorrect, float32(correct)/float32(count), t3.Sub(t2))
successrate := float32(correct) / float32(count)
if successrate < 0.60 {
t.Errorf("Unacceptable correction rate for set test1 (%v). e.g. below 60 percent.", successrate)
}
// 5000Hz is our aim
maxtime := time.Duration(count) * 200 * time.Microsecond
if t3.Sub(t2) > maxtime {
t.Errorf("Unacceptable completion time for set test1 (%v). e.g. %v corrections took greater than %v.", t3.Sub(t2), count, maxtime)
}
// SET 2
count, correct, incorrect = 0, 0, 0
t2 = time.Now()
for target, testwords := range tests2 {
testwordarr := strings.Split(testwords, " ")
for _, testword := range testwordarr {
if model.SpellCheck(testword) == target {
correct++
} else {
incorrect++
}
count++
}
}
t3 = time.Now()
fmt.Printf("Spell test2 count: %v, Correct: %v, Incorrect: %v, Ratio: %f, Total time: %v \n\n", count, correct, incorrect, float32(correct)/float32(count), t3.Sub(t2))
successrate = float32(correct) / float32(count)
if successrate < test2AccuracyThreshold {
t.Errorf("Unacceptable correction rate for set test2 (%v). e.g. below %v.", successrate, test2AccuracyThreshold)
}
// 5000Hz is our aim
maxtime = time.Duration(count) * 200 * time.Microsecond
if t3.Sub(t2) > maxtime {
t.Errorf("Unacceptable completion time for set test2 (%v). e.g. %v corrections took greater than %v", t3.Sub(t2), count, maxtime)
}
}
// Quick test to make sure we're picking up the right stuff
func TestAutocomplete(t *testing.T) {
model := NewModel()
model.Train(sampleEnglish)
out, err := model.Autocomplete("accoun")
if err != nil {
t.Errorf("Autocomplete() returned an error: %s", err)
}
expected := map[string]bool{
"account": true,
"accountant": true,
"accounts": true,
"accounted": true,
}
for _, m := range out {
if val, ok := expected[m]; !ok {
t.Errorf("Expected to find %v (%v), but didn't", m, val)
}
}
}
// Test to ensure query training begins to dominate over
// corpus training when autocompleting
func TestAutocompleteFromQueries(t *testing.T) {
model := NewModel()
// Changing defaults for testing only, this is not advisable on production
model.SetThreshold(1)
model.SetDivergenceThreshold(1)
model.Train([]string{"every", "every", "every", "every", "every", "every", "everest", "eveready", "eveready", "everything", "everything"})
model.TrainQuery("everest") // Simulate a query
model.TrainQuery("everest") // Simulate a query
model.TrainQuery("eveready") // Simulate a query
out, err := model.Autocomplete("eve")
if err != nil {
t.Errorf("Autocomplete() returned an error: %s", err)
}
if out[0] != "everest" {
t.Errorf("Autocomplete failed to account for query training")
}
if out[1] != "eveready" {
t.Errorf("Autocomplete failed to account for query training")
}
}
func TestLoadOldModel(t *testing.T) {
if _, err := Load("data/test.dict"); err != nil {
t.Errorf("Couldn't load old model format: %v", err)
}
}
func TestEditsMulti(t *testing.T) {
model := NewModel()
got := model.EditsMulti("elephant", model.Depth)
want := []string{
"lephant", "eephant", "elphant", "elehant", "elepant", "elephnt", "elephat", "elephan", "elephant",
"ephant", "lphant", "lehant", "lepant", "lephnt", "lephat", "lephan", "lephant",
"ephant", "ephant", "eehant", "eepant", "eephnt", "eephat", "eephan", "eephant",
"lphant", "ephant", "elhant", "elpant", "elphnt", "elphat", "elphan", "elphant",
"lehant", "eehant", "elhant", "eleant", "elehnt", "elehat", "elehan", "elehant",
"lepant", "eepant", "elpant", "eleant", "elepnt", "elepat", "elepan", "elepant",
"lephnt", "eephnt", "elphnt", "elehnt", "elepnt", "elepht", "elephn", "elephnt",
"lephat", "eephat", "elphat", "elehat", "elepat", "elepht", "elepha", "elephat",
"lephan", "eephan", "elphan", "elehan", "elepan", "elephn", "elepha", "elephan",
"lephant", "eephant", "elphant", "elehant", "elepant", "elephnt", "elephat", "elephan", "elephant"}
if !reflect.DeepEqual(got, want) {
t.Errorf("EditsMulti didn't match:\nGot: %v\nWant: %v", got, want)
}
}
var result []string // prevent the benchmark from getting optimized out
func BenchmarkEditsMulti(b *testing.B) {
model := NewModel()
for i := 0; i < b.N; i++ {
result = model.EditsMulti("elephant", model.Depth)
}
}