Assumptions constructor

const Assumptions({
  1. bool? commutative,
  2. bool? complex,
  3. bool? imaginary,
  4. bool? real,
  5. bool? extendedReal,
  6. bool? integer,
  7. bool? nonInteger,
  8. bool? odd,
  9. bool? even,
  10. bool? prime,
  11. bool? composite,
  12. bool? zero,
  13. bool? nonzero,
  14. bool? rational,
  15. bool? algebraic,
  16. bool? transcendental,
  17. bool? irrational,
  18. bool? finite,
  19. bool? infinite,
  20. bool? negative,
  21. bool? nonNegative,
  22. bool? positive,
  23. bool? nonPositive,
  24. bool? extendedNegative,
  25. bool? extendedNonNegative,
  26. bool? extendedPositive,
  27. bool? extendedNonPositive,
  28. bool? extendedNonzero,
  29. bool? hermitian,
  30. bool? antiHermitian,
})

Implementation

const Assumptions({
  this.commutative,
  this.complex,
  this.imaginary,
  this.real,
  this.extendedReal,
  this.integer,
  this.nonInteger,
  this.odd,
  this.even,
  this.prime,
  this.composite,
  this.zero,
  this.nonzero,
  this.rational,
  this.algebraic,
  this.transcendental,
  this.irrational,
  this.finite,
  this.infinite,
  this.negative,
  this.nonNegative,
  this.positive,
  this.nonPositive,
  this.extendedNegative,
  this.extendedNonNegative,
  this.extendedPositive,
  this.extendedNonPositive,
  this.extendedNonzero,
  this.hermitian,
  this.antiHermitian,
});