コード例 #1
0
        public void GetAllEntriesFast()
        {
            var matrix = new SparseCoOccurrenceMatrix();
            var words  = GenerateRandomWordList(30);

            matrix.HandleCoOcurrentWordsSync(words);
            var entries = matrix.GetEntries(n => true);
        }