-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample.scala
48 lines (37 loc) · 1.33 KB
/
Example.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import de.pseifer.shar.core._
import de.pseifer.shar.dl._
import de.pseifer.shar.util.Shar
@main def example: Unit =
// Instantiate the SHAR framework...
val shar = Shar()
import shar._
// ...and a HermiT intance.
val kb = mkHermit()
val r = for
// Parse (and validate) IRIs.
c1 <- Iri.fromString("<http://example.org#ComputerScientist>")
c2 <- Iri.fromString("<http://example.org#Scientist>")
c3 <- Iri.fromString("<http://example.org#Person>")
yield
// Add axioms to the KB.
kb.addAxiom(Subsumption(NamedConcept(c1), NamedConcept(c2)))
kb.addAxiom(Subsumption(NamedConcept(c2), NamedConcept(c3)))
// Prove entailment of axiom.
kb.prove(Subsumption(NamedConcept(c1), NamedConcept(c3)))
println(r) // prints Right(true)
@main def exampleOWL: Unit =
// Instantiate the SHAR framework...
for
ontology <- Iri.fromString("<https://www.w3.org/TR/owl-guide/wine.rdf>")
do
val shar = Shar(OntologyInitialization(ontology))
import shar._
val kb = mkHermit()
val wine = "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#"
val r = for
c1 <- Iri.fromParts(wine, "RedWine")
c2 <- Iri.fromParts(wine, "Wine")
yield
// Prove entailment of axiom.
kb.prove(Subsumption(NamedConcept(c1), NamedConcept(c2)))
println(r) // prints Right(true)