Class ProbabilisticRankingReasoner

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private boolean exactInference
      Whether to use exact inference.
      static int NUMBER_OF_TRIALS
      Number of trials for the used monte carlo search (this is a factor multiplied with the number of arguments of the actual framework)
      private Probability p
      The probability used for all arguments to instantiate a probabilistic argumentation framework
      private Semantics sem
      The classical semantics used for evaluating subgraphs
    • Method Summary

      Modifier and Type Method Description
      NumericalArgumentRanking getModel​(DungTheory aaf)
      Returns a single (dedicated) model of the given belief base.
      java.util.Collection<NumericalArgumentRanking> getModels​(DungTheory bbase)
      Returns a characterizing model of the given belief base
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • NUMBER_OF_TRIALS

        public static int NUMBER_OF_TRIALS
        Number of trials for the used monte carlo search (this is a factor multiplied with the number of arguments of the actual framework)
      • p

        private Probability p
        The probability used for all arguments to instantiate a probabilistic argumentation framework
      • sem

        private Semantics sem
        The classical semantics used for evaluating subgraphs
      • exactInference

        private boolean exactInference
        Whether to use exact inference.
    • Constructor Detail

      • ProbabilisticRankingReasoner

        public ProbabilisticRankingReasoner​(Semantics sem,
                                            Probability p,
                                            boolean exactInference)
        Creates a new reasoner.
        Parameters:
        sem - The classical semantics used for evaluating subgraphs
        p - The probability used for all arguments to instantiate a probabilistic argumentation framework
        exactInference - Whether to use exact inference.