github.com/sergi/go-diff/diffmatchpatch.DiffMatchPatch.matchBitapScore (method)

6 uses

	github.com/sergi/go-diff/diffmatchpatch (current package)
		match.go#L46: 		scoreThreshold = math.Min(dmp.matchBitapScore(0, bestLoc, loc,
		match.go#L51: 			scoreThreshold = math.Min(dmp.matchBitapScore(0, bestLoc, loc,
		match.go#L68: 			if dmp.matchBitapScore(d, loc+binMid, loc, pattern) <= scoreThreshold {
		match.go#L102: 				score := dmp.matchBitapScore(d, j-1, loc, pattern)
		match.go#L118: 		if dmp.matchBitapScore(d+1, loc, loc, pattern) > scoreThreshold {
		match.go#L128: func (dmp *DiffMatchPatch) matchBitapScore(e, x, loc int, pattern string) float64 {