(expr: any)
| 485 | |
| 486 | describe('Logic Simplification Rules', () => { |
| 487 | function simplify(expr: any) { |
| 488 | return ce.expr(expr).simplify().toString(); |
| 489 | } |
| 490 | |
| 491 | describe('Absorption', () => { |
| 492 | it('should simplify A ∧ (A ∨ B) → A', () => { |
no test coverage detected