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