package core import ( "fmt" "github.com/huichen/wukong/types" ) func indicesToString(indexer *Indexer, token string) (output string) { if indices, ok := indexer.tableLock.table[token]; ok { for i := 0; i < indexer.getIndexLength(indices); i++ { output += fmt.Sprintf("%s ", indexer.getDocId(indices, i)) } } return } func indexedDocsToString(docs []types.IndexedDocument, numDocs int) (output string) { for _, doc := range docs { output += fmt.Sprintf("[%s %d %v] ", doc.DocId, doc.TokenProximity, doc.TokenSnippetLocations) } return } func scoredDocsToString(docs []types.ScoredDocument) (output string) { for _, doc := range docs { output += fmt.Sprintf("[%s [", doc.DocId) for _, score := range doc.Scores { output += fmt.Sprintf("%d ", int(score*1000)) } output += "]] " } return }