The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

43 lines
932 B

4 weeks ago
  1. ---
  2. # labels:
  3. # - label: "AgentIsInGoal"
  4. # text: "AgentIsInGoal"
  5. # - label: "Hallo"
  6. # text: "AgentIsInGoal"
  7. # constants:
  8. # - constant: "prop_slippery_turn"
  9. # type: "double"
  10. # value: "9/9"
  11. # overwrite: True
  12. properties:
  13. - property: "FaultProbability"
  14. value: 0.2
  15. - property: "ProbForwardIntended"
  16. value: 0.1
  17. - property: "ProbTurnIntended"
  18. value: 0.1
  19. # - property: "modeltype"
  20. # value: "smg"
  21. modules:
  22. - module: "Agent"
  23. # overwrite: True
  24. # module_text: |
  25. # NewModule
  26. # True
  27. commands:
  28. - action: "[Agent_turn_left]"
  29. guard: "viewAgent=3"
  30. overwrite: True
  31. index: 1
  32. - action: "[Agent_turn_left]"
  33. update: "(viewAgent'=3)"
  34. overwrite: True
  35. index: 3
  36. - action: "[Agent_turn_right]"
  37. guard: "AgentIsOnSlippery"
  38. update: "(viewAgent'=3)"
  39. overwrite: True
  40. index: [0,1]
  41. ...