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