/* This file is part of the OWL API. * The contents of this file are subject to the LGPL License, Version 3.0. * Copyright 2011, Clark & Parsia, LLC * * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. * * Alternatively, the contents of this file may be used under the terms of the Apache License, Version 2.0 in which case, the provisions of the Apache License Version 2.0 are applicable instead of those above. * 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. */ package com.clarkparsia.owlapi.explanation; import static org.semanticweb.owlapi.model.parameters.Imports.INCLUDED; import static org.semanticweb.owlapi.util.OWLAPIPreconditions.checkNotNull; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; import javax.annotation.Nonnegative; import javax.annotation.Nullable; import org.semanticweb.owlapi.model.OWLAxiom; import org.semanticweb.owlapi.model.OWLClassExpression; import org.semanticweb.owlapi.model.OWLDeclarationAxiom; import org.semanticweb.owlapi.model.OWLEntity; import org.semanticweb.owlapi.model.OWLException; import org.semanticweb.owlapi.model.OWLOntology; import org.semanticweb.owlapi.model.OWLOntologyManager; import org.semanticweb.owlapi.model.OWLRuntimeException; import org.semanticweb.owlapi.reasoner.OWLReasoner; import org.semanticweb.owlapi.reasoner.OWLReasonerFactory; import org.semanticweb.owlapi.util.OWLAPIPreconditions; import org.semanticweb.owlapi.util.OWLEntityCollector; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.clarkparsia.owlapi.explanation.util.ExplanationProgressMonitor; import com.clarkparsia.owlapi.explanation.util.OntologyUtils; import com.clarkparsia.owlapi.explanation.util.SilentExplanationProgressMonitor; /** * HST explanation generator. */ public class HSTExplanationGenerator implements MultipleExplanationGenerator { private static final Logger LOGGER = LoggerFactory.getLogger(HSTExplanationGenerator.class); private final TransactionAwareSingleExpGen singleExplanationGenerator; private ExplanationProgressMonitor progressMonitor = new SilentExplanationProgressMonitor(); /** * Instantiates a new hST explanation generator. * * @param singleExplanationGenerator explanation generator to use */ public HSTExplanationGenerator(TransactionAwareSingleExpGen singleExplanationGenerator) { this.singleExplanationGenerator = checkNotNull(singleExplanationGenerator, "singleExplanationGenerator cannot be null"); } /** * Orders the axioms in a single MUPS by the frequency of which they appear in all MUPS. * * @param mups The MUPS containing the axioms to be ordered * @param allMups The set of all MUPS which is used to calculate the ordering * @return the ordered mups */ private static List<OWLAxiom> getOrderedMUPS(List<OWLAxiom> mups, final Set<Set<OWLAxiom>> allMups) { Comparator<OWLAxiom> mupsComparator = (o1, o2) -> { // The axiom that appears in most MUPS has the lowest index // in the list int occ1 = getOccurrences(o1, allMups); int occ2 = getOccurrences(o2, allMups); return -occ1 + occ2; }; Collections.sort(mups, mupsComparator); return mups; } /** * Given an axiom and a set of axioms this method determines how many sets contain the axiom. * * @param ax The axiom that will be counted. * @param axiomSets The sets to count from * @return the occurrences */ protected static int getOccurrences(@Nullable OWLAxiom ax, Set<Set<OWLAxiom>> axiomSets) { int count = 0; if (ax == null) { return count; } for (Set<OWLAxiom> axioms : axiomSets) { if (axioms.contains(ax)) { count++; } } return count; } /** * Returns the entities referenced in an axiom. * * @param axiom axiom whose signature is being computed * @return the entities referenced in the axiom */ private static Set<OWLEntity> getSignature(OWLAxiom axiom) { Set<OWLEntity> toReturn = new HashSet<>(); OWLEntityCollector collector = new OWLEntityCollector(toReturn); axiom.accept(collector); return toReturn; } /** * Check early termination. * * @param satPaths the sat paths * @param currentPathContents the current path contents * @return true, if successful */ private static boolean checkEarlyTermination(Set<Set<OWLAxiom>> satPaths, Set<OWLAxiom> currentPathContents) { boolean earlyTermination = false; // Early path termination. If our path contents are the superset of // the contents of a path then we can terminate here. for (Set<OWLAxiom> satPath : satPaths) { if (currentPathContents.containsAll(satPath)) { earlyTermination = true; LOGGER.info("Stop - satisfiable (early termination)"); break; } } return earlyTermination; } @Override public void setProgressMonitor(ExplanationProgressMonitor progressMonitor) { this.progressMonitor = checkNotNull(progressMonitor, "progressMonitor cannot be null"); } @Override public OWLOntologyManager getOntologyManager() { return singleExplanationGenerator.getOntologyManager(); } @Override public OWLOntology getOntology() { return singleExplanationGenerator.getOntology(); } @Override public OWLReasoner getReasoner() { return singleExplanationGenerator.getReasoner(); } @Override public OWLReasonerFactory getReasonerFactory() { return singleExplanationGenerator.getReasonerFactory(); } /** * Gets the single explanation generator. * * @return the explanation generator */ public TransactionAwareSingleExpGen getSingleExplanationGenerator() { return singleExplanationGenerator; } // Hitting Set Stuff @Override public Set<OWLAxiom> getExplanation(OWLClassExpression unsatClass) { return singleExplanationGenerator.getExplanation(unsatClass); } @Override public Set<Set<OWLAxiom>> getExplanations(OWLClassExpression unsatClass) { return getExplanations(unsatClass, 0); } @Override public void dispose() { singleExplanationGenerator.dispose(); } @Override public Set<Set<OWLAxiom>> getExplanations(OWLClassExpression unsatClass, @Nonnegative int maxExplanations) { OWLAPIPreconditions.checkNotNegative(maxExplanations, "max explanations cannot be negative"); Object max = maxExplanations == 0 ? "all" : Integer.valueOf(maxExplanations); LOGGER.info("Get {} explanation(s) for: {}", max, unsatClass); try { Set<OWLAxiom> firstMups = getExplanation(unsatClass); if (firstMups.isEmpty()) { return Collections.emptySet(); } Set<Set<OWLAxiom>> allMups = new LinkedHashSet<>(); progressMonitor.foundExplanation(firstMups); allMups.add(firstMups); Set<Set<OWLAxiom>> satPaths = new HashSet<>(); Set<OWLAxiom> currentPathContents = new HashSet<>(); singleExplanationGenerator.beginTransaction(); try { constructHittingSetTree(unsatClass, firstMups, allMups, satPaths, currentPathContents, maxExplanations); } finally { singleExplanationGenerator.endTransaction(); } progressMonitor.foundAllExplanations(); return allMups; } catch (OWLException e) { throw new OWLRuntimeException(e); } } /** * This is a recursive method that builds a hitting set tree to obtain all justifications for an * unsatisfiable class. * * @param unsatClass the unsat class * @param mups The current justification for the current class. This corresponds to a node in * the hitting set tree. * @param allMups All of the MUPS that have been found - this set gets populated over the course * of the tree building process. Initially this should just contain the first justification * @param satPaths Paths that have been completed. * @param currentPathContents The contents of the current path. Initially this should be an * empty set. * @param maxExplanations the max explanations * @throws OWLException the oWL exception */ private void constructHittingSetTree(OWLClassExpression unsatClass, Set<OWLAxiom> mups, Set<Set<OWLAxiom>> allMups, Set<Set<OWLAxiom>> satPaths, Set<OWLAxiom> currentPathContents, int maxExplanations) throws OWLException { LOGGER.info("MUPS {}: {}", Integer.valueOf(allMups.size()), mups); if (progressMonitor.isCancelled()) { return; } // We go through the current mups, axiom by axiom, and extend the tree // with edges for each axiom List<OWLAxiom> orderedMups = getOrderedMUPS(new ArrayList<>(mups), allMups); while (!orderedMups.isEmpty()) { if (progressMonitor.isCancelled()) { return; } OWLAxiom axiom = orderedMups.get(0); orderedMups.remove(0); if (allMups.size() == maxExplanations) { LOGGER.info("Computed {} explanations", Integer.valueOf(maxExplanations)); return; } LOGGER.info("Removing axiom: {} {} more removed: {}", axiom, Integer.valueOf(currentPathContents.size()), currentPathContents); // Removal may have dereferenced some entities, if so declarations // are added List<OWLDeclarationAxiom> temporaryDeclarations = new ArrayList<>(); Set<OWLOntology> ontologies = removeAxiomAndAddDeclarations(axiom, temporaryDeclarations); currentPathContents.add(axiom); boolean earlyTermination = checkEarlyTermination(satPaths, currentPathContents); if (!earlyTermination) { orderedMups = recurse(unsatClass, allMups, satPaths, currentPathContents, maxExplanations, orderedMups, axiom); } backtrack(currentPathContents, axiom, temporaryDeclarations, ontologies); } } /** * Recurse. * * @param unsatClass the unsat class * @param allMups the all mups * @param satPaths the sat paths * @param currentPathContents the current path contents * @param maxExplanations the max explanations * @param orderedMups the ordered mups * @param axiom the axiom * @return the list * @throws OWLException the oWL exception */ private List<OWLAxiom> recurse(OWLClassExpression unsatClass, Set<Set<OWLAxiom>> allMups, Set<Set<OWLAxiom>> satPaths, Set<OWLAxiom> currentPathContents, int maxExplanations, List<OWLAxiom> orderedMups, OWLAxiom axiom) throws OWLException { Set<OWLAxiom> newMUPS = getNewMUPS(unsatClass, allMups, currentPathContents); // Generate a new node - i.e. a new justification set if (newMUPS.contains(axiom)) { // How can this be the case??? throw new OWLRuntimeException("Explanation contains removed axiom: " + axiom); } if (newMUPS.isEmpty()) { LOGGER.info("Stop - satisfiable"); // End of current path - add it to the list of paths satPaths.add(new HashSet<>(currentPathContents)); } else { // Note that getting a previous justification does not mean // we can stop. stopping here causes some justifications to // be missed allMups.add(newMUPS); progressMonitor.foundExplanation(newMUPS); // Recompute priority here? constructHittingSetTree(unsatClass, newMUPS, allMups, satPaths, currentPathContents, maxExplanations); // We have found a new MUPS, so recalculate the ordering // axioms in the MUPS at the current level return getOrderedMUPS(orderedMups, allMups); } return orderedMups; } private void backtrack(Set<OWLAxiom> currentPathContents, OWLAxiom axiom, List<OWLDeclarationAxiom> temporaryDeclarations, Set<OWLOntology> ontologies) { // Back track - go one level up the tree and run for the next axiom currentPathContents.remove(axiom); LOGGER.info("Restoring axiom: {}", axiom); // Remove any temporary declarations for (OWLDeclarationAxiom decl : temporaryDeclarations) { OntologyUtils.removeAxiom(decl, getReasoner().getRootOntology().importsClosure()); } // Done with the axiom that was removed. Add it back in OntologyUtils.addAxiom(axiom, ontologies.stream()); } /** * Gets the new mups. * * @param unsatClass the unsat class * @param allMups the all mups * @param currentPathContents the current path contents * @return the new mups */ private Set<OWLAxiom> getNewMUPS(OWLClassExpression unsatClass, Set<Set<OWLAxiom>> allMups, Set<OWLAxiom> currentPathContents) { Set<OWLAxiom> newMUPS = null; for (Set<OWLAxiom> foundMUPS : allMups) { Set<OWLAxiom> foundMUPSCopy = new HashSet<>(foundMUPS); foundMUPSCopy.retainAll(currentPathContents); if (foundMUPSCopy.isEmpty()) { newMUPS = foundMUPS; break; } } if (newMUPS == null) { newMUPS = getExplanation(unsatClass); } return newMUPS; } /** * Removes the axiom and add declarations. * * @param axiom the axiom * @param temporaryDeclarations the temporary declarations * @return the sets the */ private Set<OWLOntology> removeAxiomAndAddDeclarations(OWLAxiom axiom, List<OWLDeclarationAxiom> temporaryDeclarations) { // Remove the current axiom from all the ontologies it is included // in Set<OWLOntology> ontologies = OntologyUtils.removeAxiom(axiom, getReasoner().getRootOntology().importsClosure()); collectTemporaryDeclarations(axiom, temporaryDeclarations); for (OWLDeclarationAxiom decl : temporaryDeclarations) { OntologyUtils.addAxiom(decl, getReasoner().getRootOntology().importsClosure()); } return ontologies; } private void collectTemporaryDeclarations(OWLAxiom axiom, List<OWLDeclarationAxiom> temporaryDeclarations) { for (OWLEntity e : getSignature(axiom)) { boolean referenced = getReasoner().getRootOntology().isDeclared(e, INCLUDED); if (!referenced) { temporaryDeclarations.add(getDeclaration(e)); } } } /** * Gets the declaration. * * @param e the e * @return the declaration */ private OWLDeclarationAxiom getDeclaration(OWLEntity e) { return getOntologyManager().getOWLDataFactory().getOWLDeclarationAxiom(e); } }