Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit 8df96d8

Browse files
Clean-up in axioms.ForwardRuleReasonerOWLHorst
1 parent a8c4e17 commit 8df96d8

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

sansa-inference-spark/src/main/scala/net/sansa_stack/inference/spark/forwardchaining/axioms/ForwardRuleReasonerOWLHorst.scala

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ import scala.collection.JavaConverters._
1212

1313
/**
1414
* A forward chaining implementation for the OWL Horst entailment regime that works
15-
* on OWL axioms
15+
* on OWL axioms.
16+
*
17+
* Rule names refer to the name scheme used in
18+
* 'RORS: Enhanced Rule-based OWL Reasoning on Spark' by Liu, Feng, Zhang,
19+
* Wang, Rao
1620
*
1721
* @param sc The Apache Spark context
1822
* @param parallelism The degree of parallelism
@@ -24,7 +28,7 @@ class ForwardRuleReasonerOWLHorst (sc: SparkContext, parallelism: Int = 2) exten
2428

2529
def this(sc: SparkContext) = this(sc, sc.defaultParallelism)
2630

27-
def apply(axioms: RDD[OWLAxiom], input: String): RDD[OWLAxiom] = {
31+
def apply(axioms: RDD[OWLAxiom]): RDD[OWLAxiom] = {
2832

2933
val startTime = System.currentTimeMillis()
3034

0 commit comments

Comments
 (0)