Simulation Core
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

33 wiersze
749 B

  1. ! SimulationCore2.f90
  2. !
  3. ! FUNCTIONS:
  4. ! SimulationCore2 - Entry point of console application.
  5. !
  6. !****************************************************************************
  7. !
  8. ! PROGRAM: SimulationCore2
  9. !
  10. ! PURPOSE: Entry point for the console application.
  11. !
  12. !****************************************************************************
  13. program SimulationCore2
  14. use Simulator
  15. use RedisInterface
  16. !use testRedisModule
  17. implicit none
  18. ! character(len=200)::s
  19. ! Variables
  20. ! Body of SimulationCore2
  21. ! print *, 'Hello World'
  22. ! call read_variables()
  23. call simulate()
  24. ! Initialise the json_file object.
  25. ! call testRedis()
  26. ! pause
  27. end program SimulationCore2