diff options
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/rules/TupleDependentApproximator.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/rules/TupleDependentApproximator.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/rules/TupleDependentApproximator.java b/src/uk/ac/ox/cs/pagoda/rules/TupleDependentApproximator.java new file mode 100644 index 0000000..63057c4 --- /dev/null +++ b/src/uk/ac/ox/cs/pagoda/rules/TupleDependentApproximator.java | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.rules; | ||
| 2 | |||
| 3 | import org.semanticweb.HermiT.model.DLClause; | ||
| 4 | import uk.ac.ox.cs.pagoda.multistage.AnswerTupleID; | ||
| 5 | |||
| 6 | import java.util.Collection; | ||
| 7 | |||
| 8 | /** | ||
| 9 | * It approximates rules according to a specific instantiation of the body. | ||
| 10 | */ | ||
| 11 | public interface TupleDependentApproximator { | ||
| 12 | |||
| 13 | Collection<DLClause> convert(DLClause clause, | ||
| 14 | DLClause originalClause, | ||
| 15 | Collection<AnswerTupleID> violationTuples); | ||
| 16 | } | ||
