Skip to content
Commit c0977ec1 authored by Christoph Schwering's avatar Christoph Schwering
Browse files

Fixed: split literals were deleted too aggressively from PEL

Suppose we need to split p and q to show c.
Before, the following would happen:
1. p
 2. q
 3. ~q
4. ~p
because during 2./3., q was deleted from PEL.
Now, the following happens:
1. p
 2. q
 3. ~q
4. ~p
 5. q
 6. ~q
7. q
8. ~q
Sadly, this is much more expensive, obviously.
parent cba347ab
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment