DecisionProcess

public enum DecisionProcess

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.
  • Undocumented

    Declaration

    Swift

    case predict
  • Undocumented

    Declaration

    Swift

    case random
  • Undocumented

    Declaration

    Swift

    case weightedRandom