diff options
| author | yzhou <yujiao.zhou@gmail.com> | 2015-04-21 10:34:27 +0100 |
|---|---|---|
| committer | yzhou <yujiao.zhou@gmail.com> | 2015-04-21 10:34:27 +0100 |
| commit | 9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8 (patch) | |
| tree | 47511c0fb89dccff0db4b5990522e04f294d795b /src/uk/ac/ox/cs/pagoda/constraints/BottomStrategy.java | |
| parent | b1ac207612ee8b045244253fb94b866104bc34f2 (diff) | |
| download | ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.tar.gz ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.zip | |
initial version
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/constraints/BottomStrategy.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/constraints/BottomStrategy.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/constraints/BottomStrategy.java b/src/uk/ac/ox/cs/pagoda/constraints/BottomStrategy.java new file mode 100644 index 0000000..4d25593 --- /dev/null +++ b/src/uk/ac/ox/cs/pagoda/constraints/BottomStrategy.java | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.constraints; | ||
| 2 | |||
| 3 | import java.util.Collection; | ||
| 4 | |||
| 5 | import org.semanticweb.HermiT.model.Atom; | ||
| 6 | import org.semanticweb.HermiT.model.DLClause; | ||
| 7 | import org.semanticweb.HermiT.model.Term; | ||
| 8 | |||
| 9 | public interface BottomStrategy { | ||
| 10 | |||
| 11 | public Collection<DLClause> process(Collection<DLClause> clauses); | ||
| 12 | |||
| 13 | public boolean isBottomRule(DLClause clause); | ||
| 14 | |||
| 15 | public Atom[] getEmptyHead(Term t); | ||
| 16 | |||
| 17 | public int getBottomNumber(); | ||
| 18 | |||
| 19 | } | ||
