Skip to content

Commit f3c4827

Browse files
committed
wip
1 parent 99d3014 commit f3c4827

43 files changed

Lines changed: 582 additions & 126 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ShaclSailBaseConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ abstract class ShaclSailBaseConfiguration extends NotifyingSailWrapper {
3535
private boolean validationEnabled = ShaclSailConfig.VALIDATION_ENABLED_DEFAULT;
3636
private boolean cacheSelectNodes = ShaclSailConfig.CACHE_SELECT_NODES_DEFAULT;
3737
private boolean rdfsSubClassReasoning = ShaclSailConfig.RDFS_SUB_CLASS_REASONING_DEFAULT;
38-
private boolean includeInferredStatements = false;
38+
private boolean includeInferredStatements = true;
3939
private boolean serializableValidation = ShaclSailConfig.SERIALIZABLE_VALIDATION_DEFAULT;
4040
private boolean performanceLogging = ShaclSailConfig.PERFORMANCE_LOGGING_DEFAULT;
4141
private boolean eclipseRdf4jShaclExtensions = ShaclSailConfig.ECLIPSE_RDF4J_SHACL_EXTENSIONS_DEFAULT;
@@ -160,7 +160,7 @@ public boolean isIncludeInferredStatements() {
160160
/**
161161
* Allow SHACL validation to use inferred statements from the base sail when RDFS subclass reasoning is disabled.
162162
*
163-
* @param includeInferredStatements default false
163+
* @param includeInferredStatements default true
164164
*/
165165
public void setIncludeInferredStatements(boolean includeInferredStatements) {
166166
this.includeInferredStatements = includeInferredStatements;

0 commit comments

Comments
 (0)