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)
190return Full; 193if (set == Full) 222if (set1 == Full || set2 == Full) return Full; 227if (set1 == Full) return set2; 228if (set2 == Full) return set1; 237if (set1 == Full) return Not(set2); 238if (set2 == Full) return Not(set1); 286public bool IsFull(BDD set) => ApplyBinaryOp(BooleanOperation.Xor, set, Full) == Empty; 311upper == 0 ? GetOrCreateBDD(maxBit, Empty, Full) : // lower must also be 0 312lower == 1 ? GetOrCreateBDD(maxBit, Full, Empty) : // upper must also be 1 313Full; // Otherwise both 0 and 1 are included 319return Full; 362if (bdd == Full)
System\Text\RegularExpressions\Symbolic\RegexNodeConverter.cs (1)
460(negate ? charSetSolver.Empty : charSetSolver.Full) :