diff options
| author | yujiao <yujiao.zhou@gmail.com> | 2015-05-25 22:07:14 -0700 |
|---|---|---|
| committer | yujiao <yujiao.zhou@gmail.com> | 2015-05-25 22:07:14 -0700 |
| commit | 4f98cb7df7f2921808d825cdcd82f95a0899640e (patch) | |
| tree | fad60a143e8f6a300c24900b53d9a32af2875e24 /src/uk/ac/ox/cs/pagoda/query/GapTupleIterator.java | |
| parent | e02ad77cefc3005e36ae48fe47bf7914007f094a (diff) | |
| download | ACQuA-4f98cb7df7f2921808d825cdcd82f95a0899640e.tar.gz ACQuA-4f98cb7df7f2921808d825cdcd82f95a0899640e.zip | |
fixed a bug in the process of generating gap tuples, see test in
TestGapMappedToLower.java
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/query/GapTupleIterator.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/query/GapTupleIterator.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/query/GapTupleIterator.java b/src/uk/ac/ox/cs/pagoda/query/GapTupleIterator.java index 58303bb..61b6364 100644 --- a/src/uk/ac/ox/cs/pagoda/query/GapTupleIterator.java +++ b/src/uk/ac/ox/cs/pagoda/query/GapTupleIterator.java | |||
| @@ -17,8 +17,6 @@ public abstract class GapTupleIterator<T> implements Iterator<T> { | |||
| 17 | 17 | ||
| 18 | public void compile(String programText) throws JRDFStoreException {} | 18 | public void compile(String programText) throws JRDFStoreException {} |
| 19 | 19 | ||
| 20 | public abstract boolean isValid(); | ||
| 21 | |||
| 22 | public abstract void save(String file); | 20 | public abstract void save(String file); |
| 23 | 21 | ||
| 24 | public abstract void addBackTo() throws JRDFStoreException; | 22 | public abstract void addBackTo() throws JRDFStoreException; |
| @@ -26,5 +24,5 @@ public abstract class GapTupleIterator<T> implements Iterator<T> { | |||
| 26 | public abstract void addTo(DataStore store) throws JRDFStoreException; | 24 | public abstract void addTo(DataStore store) throws JRDFStoreException; |
| 27 | 25 | ||
| 28 | public abstract void clear(); | 26 | public abstract void clear(); |
| 29 | 27 | ||
| 30 | } | 28 | } |
