Enumerations

The following enumerations are available globally.

  • Indicates the decision process for a given Markov Chain.

    • predict: Exact prediction based on the most likely next state. If there are two or more equal probabilities, the latest one will be taken.
    • random: Fully random process, considering only the valid options.
    • weightedRandom: Random process, considering the valid options and the probabilities.
    See more

    Declaration

    Swift

    public enum DecisionProcess