All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.semanticweb.elk.reasoner.saturation.context.ContextPremises Maven / Gradle / Ivy

There is a newer version: 0.29.0
Show newest version
package org.semanticweb.elk.reasoner.saturation.context;

/*
 * #%L
 * ELK Reasoner
 * $Id:$
 * $HeadURL:$
 * %%
 * Copyright (C) 2011 - 2014 Department of Computer Science, University of Oxford
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import java.util.Map;
import java.util.Set;

import org.semanticweb.elk.reasoner.indexing.model.IndexedClassExpression;
import org.semanticweb.elk.reasoner.indexing.model.IndexedClassExpressionList;
import org.semanticweb.elk.reasoner.indexing.model.IndexedContextRoot;
import org.semanticweb.elk.reasoner.indexing.model.IndexedObjectProperty;
import org.semanticweb.elk.reasoner.indexing.model.IndexedObjectSomeValuesFrom;
import org.semanticweb.elk.reasoner.indexing.model.IndexedPropertyChain;
import org.semanticweb.elk.reasoner.saturation.conclusions.model.ClassConclusion;
import org.semanticweb.elk.reasoner.saturation.rules.LinkRule;
import org.semanticweb.elk.reasoner.saturation.rules.Rule;
import org.semanticweb.elk.reasoner.saturation.rules.backwardlinks.LinkableBackwardLinkRule;

/**
 * A representation for a set of {@link ClassConclusion}s that can be used as
 * premises of inference rules associated with a given
 * {@link IndexedContextRoot} that can be obtained using {@link #getRoot()}.
 * Whenever a {@link ClassConclusion} can participate in an inference with this root,
 * it should be saved in the {@link ContextPremises} with the corresponding
 * root.
 * 
 * @see Rule
 * @author "Yevgeny Kazakov"
 */
public interface ContextPremises {

	/**
	 * @return the {@link IndexedContextRoot} for which the {@link ClassConclusion}s
	 *         stored in this {@link ContextPremises} are assigned. This serves
	 *         as the key for {@link ContextPremises} and can never been
	 *         {@code null}.
	 */
	IndexedContextRoot getRoot();

	/**
	 * @return the set of all subsumers (implied) {@link IndexedClassExpression}
	 *         s that subsume the root {@link IndexedClassExpression} created by
	 *         composition rules
	 */
	Set getComposedSubsumers();

	/**
	 * @return the set of all subsumers (implied) {@link IndexedClassExpression}
	 *         s that subsume the root {@link IndexedClassExpression} created by
	 *         decomposition rules
	 */
	Set getDecomposedSubsumers();

	/**
	 * @return the {@link Map} storing {@link SubContextPremises} for the
	 *         corresponding {@link IndexedPropertyChain}s. The
	 *         {@link SubContextPremises} store {@link ClassConclusion}s that can be
	 *         used as premises of rules that are associated with the
	 *         corresponding sub-root {@link IndexedObjectProperty} in addition
	 *         to the root {@link IndexedClassExpression}
	 * @see SubContextPremises
	 */
	Map getSubContextPremisesByObjectProperty();

	/**
	 * @return the {@link IndexedObjectProperty}s representing all derived
	 *         "local reflexive" existential restrictions, i.e., conclusions of
	 *         the form {@code SubClassOf(:A ObjectSomeValuesFrom(:r :A)}. In
	 *         this case {@code :r} is saved as a reflexive property in the
	 *         context {@code :A}. The returned {@link Set} is not thread safe
	 *         and concurrent access should be properly synchronized. It is
	 *         never {@code null}.
	 */
	Set getLocalReflexiveObjectProperties();

	/**
	 * @return the first backward link rule assigned to this
	 *         {@link ContextPremises}, or {@code null} if there no such rules;
	 *         all other rules can be obtained by traversing over
	 *         {@link LinkRule#next()}; this method should be used to access the
	 *         rules without modifying them.
	 */
	LinkableBackwardLinkRule getBackwardLinkRuleHead();

	/**
	 * @param disjoint
	 *            an {@link IndexedClassExpressionList}
	 * 
	 * @return the positions in the {@link IndexedClassExpressionList}
	 *         corresponding to the {@link IndexedClassExpression} subsumers
	 *         occurring in this {@link ContextPremises}
	 */
	Set getSubsumerPositions(IndexedClassExpressionList disjoint);

	Iterable getPropagatedSubsumers(
			IndexedPropertyChain subRoot);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy