Implemented interface member:
property
Full
System.Text.RegularExpressions.Symbolic.ISolver<TSet>.Full
1 write to Full
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\UInt64Solver.cs (1)
22Full = minterms.Length == 64 ? ulong.MaxValue : ulong.MaxValue >> (64 - minterms.Length);
3 references to Full
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Symbolic\UInt64Solver.cs (3)
29public bool IsFull(ulong set) => set == Full; 37public ulong Not(ulong set) => Full & ~set; //NOTE: must filter off unused bits 45if (result == Full)