mapping.yml 339 B

123456789101112131415161718192021
  1. # Exemple de vision PDI pour nos structures
  2. types:
  3. Agent:
  4. type: struct
  5. members:
  6. id: int
  7. velocity: double
  8. World:
  9. type: array
  10. subtype: Agent
  11. size: $nb_agents
  12. data:
  13. current_state:
  14. type: World
  15. plugins:
  16. decl_hdf5:
  17. file: "trace_execution.h5"
  18. write:
  19. current_state: { when: $end_step }