aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/uk/ac/ox/cs/acqua/implicits
diff options
context:
space:
mode:
authorFederico Igne <federico.igne@cs.ox.ac.uk>2022-05-11 12:35:56 +0100
committerFederico Igne <federico.igne@cs.ox.ac.uk>2022-05-11 12:35:56 +0100
commit32fe8f94255b913c570275043a3c056eaa4ec07b (patch)
tree2a370c3998db1eab758f214f16f2cebc3fd2ef34 /src/main/scala/uk/ac/ox/cs/acqua/implicits
parenteaa8ed73aec7ca0ba02eb3e1c954388b8dbfc2cd (diff)
downloadACQuA-32fe8f94255b913c570275043a3c056eaa4ec07b.tar.gz
ACQuA-32fe8f94255b913c570275043a3c056eaa4ec07b.zip
Implement stub for query answering procedure
Diffstat (limited to 'src/main/scala/uk/ac/ox/cs/acqua/implicits')
-rw-r--r--src/main/scala/uk/ac/ox/cs/acqua/implicits/PagodaConverters.scala31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/main/scala/uk/ac/ox/cs/acqua/implicits/PagodaConverters.scala b/src/main/scala/uk/ac/ox/cs/acqua/implicits/PagodaConverters.scala
new file mode 100644
index 0000000..c7c582d
--- /dev/null
+++ b/src/main/scala/uk/ac/ox/cs/acqua/implicits/PagodaConverters.scala
@@ -0,0 +1,31 @@
1/*
2 * Copyright 2021,2022 KRR Oxford
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package uk.ac.ox.cs.acqua.implicits
18
19import uk.ac.ox.cs.rsacomb.sparql.ConjunctiveQuery
20import uk.ac.ox.cs.pagoda.query.QueryRecord
21
22object PagodaConverters {
23
24 implicit def queryRecord2conjuctiveQuery(q: QueryRecord): ConjunctiveQuery = ???
25
26 implicit def conjunctiveQuery2queryRecord(q: ConjunctiveQuery): QueryRecord = ???
27
28}
29
30
31