Implemented interface member:
property
Full
System.Text.RegularExpressions.Symbolic.ISolver<TSet>.Full
16 references to Full
System.Text.RegularExpressions (16)
System\Text\RegularExpressions\Symbolic\CharSetSolver.cs (15)
199return Full; 202if (set == Full) 231if (set1 == Full || set2 == Full) return Full; 236if (set1 == Full) return set2; 237if (set2 == Full) return set1; 246if (set1 == Full) return Not(set2); 247if (set2 == Full) return Not(set1); 295public bool IsFull(BDD set) => ApplyBinaryOp(BooleanOperation.Xor, set, Full) == Empty; 320upper == 0 ? GetOrCreateBDD(maxBit, Empty, Full) : // lower must also be 0 321lower == 1 ? GetOrCreateBDD(maxBit, Full, Empty) : // upper must also be 1 322Full; // Otherwise both 0 and 1 are included 328return Full; 371if (bdd == Full)
System\Text\RegularExpressions\Symbolic\RegexNodeConverter.cs (1)
460(negate ? charSetSolver.Empty : charSetSolver.Full) :