diff options
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/rules/DisjunctiveProgram.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/rules/DisjunctiveProgram.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/rules/DisjunctiveProgram.java b/src/uk/ac/ox/cs/pagoda/rules/DisjunctiveProgram.java new file mode 100644 index 0000000..6ebe666 --- /dev/null +++ b/src/uk/ac/ox/cs/pagoda/rules/DisjunctiveProgram.java | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.rules; | ||
| 2 | |||
| 3 | public class DisjunctiveProgram extends UpperProgram { | ||
| 4 | |||
| 5 | @Override | ||
| 6 | protected void initApproximator() { | ||
| 7 | m_approx = new OverApproxExist(); | ||
| 8 | } | ||
| 9 | |||
| 10 | // @Override | ||
| 11 | // public String getDirectory() { | ||
| 12 | // File dir = new File(ontologyDirectory + Utility.FILE_SEPARATOR + "disjunctiveRules"); | ||
| 13 | // if (!dir.exists()) | ||
| 14 | // dir.mkdirs(); | ||
| 15 | // return dir.getPath(); | ||
| 16 | // } | ||
| 17 | |||
| 18 | } | ||
