1414import org .eclipse .rdf4j .repository .sail .SailRepositoryConnection ;
1515import org .eclipse .rdf4j .rio .RDFFormat ;
1616import org .eclipse .rdf4j .sail .inferencer .fc .ForwardChainingRDFSInferencer ;
17- import org .eclipse .rdf4j .sail .inferencer .fc .ForwardChainingSchemaCachingRDFSInferencer ;
17+ import org .eclipse .rdf4j .sail .inferencer .fc .SchemaCachingRDFSInferencer ;
1818import org .eclipse .rdf4j .sail .memory .MemoryStore ;
1919import org .openjdk .jmh .annotations .Benchmark ;
2020import org .openjdk .jmh .annotations .BenchmarkMode ;
@@ -125,7 +125,7 @@ public void forwardChainingSchemaCachingRDFSInferencer()
125125 throws IOException
126126 {
127127 SailRepository sail = new SailRepository (
128- new ForwardChainingSchemaCachingRDFSInferencer (new MemoryStore ()));
128+ new SchemaCachingRDFSInferencer (new MemoryStore ()));
129129 sail .initialize ();
130130
131131 try (SailRepositoryConnection connection = sail .getConnection ()) {
@@ -164,7 +164,7 @@ public void forwardChainingSchemaCachingRDFSInferencerMultipleTransactions()
164164 throws IOException
165165 {
166166 SailRepository sail = new SailRepository (
167- new ForwardChainingSchemaCachingRDFSInferencer (new MemoryStore ()));
167+ new SchemaCachingRDFSInferencer (new MemoryStore ()));
168168 sail .initialize ();
169169
170170 try (SailRepositoryConnection connection = sail .getConnection ()) {
@@ -187,7 +187,7 @@ public void forwardChainingSchemaCachingRDFSInferencerSchema()
187187 throws IOException
188188 {
189189 SailRepository sail = new SailRepository (
190- new ForwardChainingSchemaCachingRDFSInferencer (new MemoryStore (), createSchema ()));
190+ new SchemaCachingRDFSInferencer (new MemoryStore (), createSchema ()));
191191 sail .initialize ();
192192
193193 try (SailRepositoryConnection connection = sail .getConnection ()) {
@@ -206,7 +206,7 @@ public void forwardChainingSchemaCachingRDFSInferencerMultipleTransactionsSchema
206206 throws IOException
207207 {
208208 SailRepository sail = new SailRepository (
209- new ForwardChainingSchemaCachingRDFSInferencer (new MemoryStore (), createSchema ()));
209+ new SchemaCachingRDFSInferencer (new MemoryStore (), createSchema ()));
210210 sail .initialize ();
211211
212212 try (SailRepositoryConnection connection = sail .getConnection ()) {
0 commit comments