Skip to content

Commit bdf9eef

Browse files
committed
Fix DD overwriting deductions
1 parent fa2a246 commit bdf9eef

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,3 @@ contri1(a, b, c, d, e, f, Provenance::from_rule("asa_cong", vec![
6161
vec![(*dx, *dy), (*ex, *ey), (*fx, *fy)]
6262
);
6363
```
64-
65-
## TODO
66-
67-
- Some deductions are listed as axioms when they are derived by AR

dd.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ def get_new_deductions(self) -> set[Deduction]:
151151

152152
if pred not in self._extracted_predicates:
153153
for rule_name, parent_fact_ids in derivations:
154+
if rule_name == "axiom":
155+
continue
154156
parent_predicates = set()
155157

156158
for parent_fact_id in parent_fact_ids:

0 commit comments

Comments
 (0)