Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Microsoft.ML.Tokenizers/Utils/DoubleArrayTrie.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Microsoft.ML.Tokenizers
//
// Succinct bit vector.
//
public class BitVector
internal class BitVector
{
private const int UnitSize = sizeof(uint) * 8;
private readonly List<uint> _units = new();
Expand Down Expand Up @@ -279,7 +279,7 @@ internal struct DawgUnit
// Directed Acyclic Word Graph (DAWG) builder.
//

public class DawgBuilder
internal class DawgBuilder
{
private const int InitialTableSize = 1 << 10;

Expand Down
Loading