Package jline.api.mam

Class Map_isfeasibleKt

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static Boolean map_isfeasible(MatrixCell MAP, Double TOL) Checks if the provided MAP is feasible based on the given tolerance.
      final static Boolean map_isfeasible(MatrixCell MAP) Checks if the provided MAP is feasible using a default tolerance.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • map_isfeasible

         final static Boolean map_isfeasible(MatrixCell MAP, Double TOL)

        Checks if the provided MAP is feasible based on the given tolerance.

        This method evaluates whether the MAP transition matrices meet the necessary conditions for a valid MAP, such as non-negativity of elements, proper row/column sums, etc.

        Parameters:
        MAP - the MatrixCell representing the MAP transition matrices
        TOL - the tolerance level for numerical stability checks
        Returns:

        true if the MAP is feasible, false otherwise

      • map_isfeasible

         final static Boolean map_isfeasible(MatrixCell MAP)

        Checks if the provided MAP is feasible using a default tolerance.

        This method uses a standard tolerance level to determine the feasibility of the MAP.

        Parameters:
        MAP - the MatrixCell representing the MAP transition matrices
        Returns:

        true if the MAP is feasible, false otherwise