001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006package org.dllearner.core.probabilistic.unife;
007
008import org.semanticweb.owlapi.model.OWLAxiom;
009import org.semanticweb.owlapi.model.OWLException;
010
011/**
012 *
013 * @author Giuseppe Cota <giuseppe.cota@unife.it>
014 */
015public interface OWLProbabilisticReasoner extends ProbabilisticReasoner {
016    
017    public OWLProbReasonerResult computeQuery(OWLAxiom axiom)
018            throws OWLException;
019    
020}