AgentTestingType

enum AgentTestingType : String, CaseIterable

An enumeration that represents the AI mode types.

  • A randomly-moving agent.

    Declaration

    Swift

    case randomMove = "random"
  • A randomly-moving agent, picking a random action with the highest value.

    Declaration

    Swift

    case randomWeightMove = "randomWeighted"
  • A reflex agent.

    Declaration

    Swift

    case reflex = "reflex"
  • An agent with a pre-determined decision tree.

    Declaration

    Swift

    case predeterminedTree = "predTree"
  • An agent that uses a trained machine learning model to make decisions.

    Declaration

    Swift

    case tealConverse = "tealConverse"