Ejemplo n.º 1
0
 public List <BV> GenerateMinterms(params BV[] constraints) => _mintermGenerator.GenerateMinterms(constraints);
Ejemplo n.º 2
0
 public List <BV> GenerateMinterms(IEnumerable <BV> constraints) => _mintermGenerator.GenerateMinterms(constraints);
Ejemplo n.º 3
0
 public List <BitVector> GenerateMinterms(HashSet <BitVector> constraints) => _mintermGenerator.GenerateMinterms(constraints);
Ejemplo n.º 4
0
 public List <ulong> GenerateMinterms(HashSet <ulong> constraints) => _mintermGenerator.GenerateMinterms(constraints);
Ejemplo n.º 5
0
 public List <ulong> GenerateMinterms(HashSet <ulong> constraints) => MintermGenerator <ulong> .GenerateMinterms(this, constraints);
Ejemplo n.º 6
0
 public List <ulong> GenerateMinterms(params ulong[] constraints) => _mintermGenerator.GenerateMinterms(constraints);