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.
|
- ! SimulationCore2.f90
- !
- ! FUNCTIONS:
- ! SimulationCore2 - Entry point of console application.
- !
- !****************************************************************************
- !
- ! PROGRAM: SimulationCore2
- !
- ! PURPOSE: Entry point for the console application.
- !
- !****************************************************************************
-
- program SimulationCore2
-
- use Simulator
- use RedisInterface
- !use testRedisModule
- implicit none
- ! character(len=200)::s
-
- ! Variables
-
- ! Body of SimulationCore2
- ! print *, 'Hello World'
- ! call read_variables()
- call simulate()
- ! Initialise the json_file object.
- ! call testRedis()
- ! pause
- end program SimulationCore2
-
|