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/rules/ExistentialProgram.java | |
| parent | b1ac207612ee8b045244253fb94b866104bc34f2 (diff) | |
| download | ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.tar.gz ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.zip | |
initial version
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/rules/ExistentialProgram.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/rules/ExistentialProgram.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/rules/ExistentialProgram.java b/src/uk/ac/ox/cs/pagoda/rules/ExistentialProgram.java new file mode 100644 index 0000000..64d018f --- /dev/null +++ b/src/uk/ac/ox/cs/pagoda/rules/ExistentialProgram.java | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.rules; | ||
| 2 | |||
| 3 | public class ExistentialProgram extends UpperProgram { | ||
| 4 | |||
| 5 | // @Override | ||
| 6 | // public String getDirectory() { | ||
| 7 | // File dir = new File(ontologyDirectory + Utility.FILE_SEPARATOR + "existential"); | ||
| 8 | // if (!dir.exists()) | ||
| 9 | // dir.mkdirs(); | ||
| 10 | // return dir.getPath(); | ||
| 11 | // } | ||
| 12 | |||
| 13 | @Override | ||
| 14 | protected void initApproximator() { | ||
| 15 | m_approx = new OverApproxDisj(); | ||
| 16 | } | ||
| 17 | |||
| 18 | } | ||
