Enum InconsistentEvidenceMode

    • Enum Constant Detail

      • QUERY_OPTIMIZED

        public static final InconsistentEvidenceMode QUERY_OPTIMIZED
        This is the default mode, and only raises an exception, when the requested queries cannot be computed.
      • ALL_EVIDENCE

        public static final InconsistentEvidenceMode ALL_EVIDENCE
        In this mode, all evidence is checked for inconsistencies, by checking the log-likelihood, and raising an exception if -Infinity. The log-likelihood option must be set to true when using this mode.
    • Method Detail

      • values

        public static InconsistentEvidenceMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (InconsistentEvidenceMode c : InconsistentEvidenceMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static InconsistentEvidenceMode valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null