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;
009
010/**
011 * 
012 * @author Giuseppe Cota <giuseppe.cota@unife.it>
013 */
014public class OWLProbReasonerResult {
015
016    private OWLAxiom axiom;
017    
018    private Double probability;
019
020    public OWLProbReasonerResult(OWLAxiom axiom, Double probability) {
021        this.axiom = axiom;
022        this.probability = probability;
023    }
024
025    /**
026     * @return the axiom
027     */
028    public OWLAxiom getAxiom() {
029        return axiom;
030    }
031
032    /**
033     * @return the probability
034     */
035    public Double getProbability() {
036        return probability;
037    }
038    
039    
040    
041}