├── .gitignore ├── Build ├── Machines │ ├── Makefile_Cray_CCE │ ├── Makefile_Cray_GCC │ ├── Makefile_Linux_GCC │ ├── Makefile_POWER_GCC │ └── Makefile_POWER_XL ├── Makefile_Build ├── Makefile_Dependencies ├── Makefile_ObjectFiles ├── Makefile_Path ├── Makefile_Patterns └── Preprocessor ├── LICENSE ├── Modules ├── Basics │ ├── Basics.f90 │ ├── DataManagement │ │ ├── ArrayArrays │ │ │ ├── ArrayArrays.f90 │ │ │ ├── Character_1D__Form.f90 │ │ │ ├── Complex_3D__Form.f90 │ │ │ ├── Integer_1D__Form.f90 │ │ │ ├── Integer_2D__Form.f90 │ │ │ ├── Integer_3D__Form.f90 │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── Real_1D__Form.f90 │ │ │ ├── Real_2D__Form.f90 │ │ │ ├── Real_3D_2D__Form.f90 │ │ │ └── Real_3D__Form.f90 │ │ ├── ArrayOperations │ │ │ ├── Add_Command.f90 │ │ │ ├── ArrayOperations.f90 │ │ │ ├── Clear_Command.f90 │ │ │ ├── Copy_Command.f90 │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── MultiplyAdd_Command.f90 │ │ │ ├── Search_Command.f90 │ │ │ └── Sort_Command.f90 │ │ ├── DataManagement.f90 │ │ ├── Makefile_Dependencies │ │ ├── Makefile_ObjectFiles │ │ ├── Makefile_Path │ │ └── Storages │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── PackedStorage_Form.f90 │ │ │ ├── Storage_1D__Form.f90 │ │ │ ├── Storage_Form.f90 │ │ │ └── Storages.f90 │ ├── Devices │ │ ├── AllocateDevice_Command.f90 │ │ ├── AllocateHost_Command.f90 │ │ ├── AssociateHost_Command.f90 │ │ ├── DeallocateDevice_Command.f90 │ │ ├── DeallocateHost_Command.f90 │ │ ├── DeviceAddress_Function.f90 │ │ ├── Device_CUDA.c │ │ ├── Device_C_OMP.f90 │ │ ├── Device_HIP.c │ │ ├── Device_OMP.c │ │ ├── Devices.f90 │ │ ├── DisassociateHost_Command.f90 │ │ ├── GetDeviceMemoryInfo_Command.f90 │ │ ├── Makefile_Dependencies │ │ ├── Makefile_ObjectFiles │ │ ├── NumberOfDevices_Function.f90 │ │ ├── OffloadEnabled_Function.f90 │ │ ├── OnDevice_Function.f90 │ │ ├── SelectDevice_Command.f90 │ │ ├── SelectedDevice_Function.f90 │ │ ├── UpdateDevice_Command.f90 │ │ └── UpdateHost_Command.f90 │ ├── Display │ │ ├── CONSOLE_Singleton.f90 │ │ ├── ConsoleHeader_Form.f90 │ │ ├── Display.f90 │ │ ├── Makefile_Dependencies │ │ ├── Makefile_ObjectFiles │ │ ├── ShowCharacter.f90 │ │ ├── ShowInteger.f90 │ │ ├── ShowMessage.f90 │ │ └── Show_Command.f90 │ ├── FileSystem │ │ ├── CurveImages │ │ │ ├── CurveImage_Form.f90 │ │ │ ├── CurveImages.f90 │ │ │ ├── Makefile_Dependencies │ │ │ └── Makefile_ObjectFiles │ │ ├── FileSystem.f90 │ │ ├── FileSystemBasics │ │ │ ├── DelayFileAccess_Command.f90 │ │ │ ├── FileSystemBasics.f90 │ │ │ ├── FindParameter_Command.f90 │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── ParameterStream_Form.f90 │ │ │ ├── ReadLabelValue_Command.f90 │ │ │ └── TableStream_Form.f90 │ │ ├── GridImageBasics │ │ │ ├── DB_MeshVariableType_Silo_C.f90 │ │ │ ├── DB_PointMeshType_Silo_C.f90 │ │ │ ├── DB_QuadMeshType_Silo_C.f90 │ │ │ ├── DB_QuadVariableType_Silo_C.f90 │ │ │ ├── DB_TableOfContentsType_Silo_C.f90 │ │ │ ├── DB_UnstructuredMeshType_Silo_C.f90 │ │ │ ├── DB_UnstructuredVariableType_Silo_C.f90 │ │ │ ├── GridImageBasics.f90 │ │ │ ├── GridImageSilo_Template.f90 │ │ │ ├── GridImageStream_Form.f90 │ │ │ ├── GridImageStream_Template.f90 │ │ │ ├── GridImage_Template.f90 │ │ │ ├── Makefile_Dependencies │ │ │ └── Makefile_ObjectFiles │ │ ├── Makefile_Dependencies │ │ ├── Makefile_ObjectFiles │ │ ├── Makefile_Path │ │ ├── PointGridImages │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── PointGridImage_Form.f90 │ │ │ └── PointGridImages.f90 │ │ ├── StructuredGridImages │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── StructuredGridImage_Form.f90 │ │ │ └── StructuredGridImages.f90 │ │ └── UnstructuredGridImages │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── UnstructuredGridImage_Form.f90 │ │ │ └── UnstructuredGridImages.f90 │ ├── Makefile_Dependencies │ ├── Makefile_ObjectFiles │ ├── Makefile_Path │ ├── MessagePassing │ │ ├── Collective │ │ │ ├── Collective.f90 │ │ │ ├── CollectiveOperation_BI__Form.f90 │ │ │ ├── CollectiveOperation_C__Form.f90 │ │ │ ├── CollectiveOperation_I__Form.f90 │ │ │ ├── CollectiveOperation_R__Form.f90 │ │ │ ├── CollectiveOperation_Template.f90 │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ └── REDUCTION_Singleton.f90 │ │ ├── Makefile_Dependencies │ │ ├── Makefile_ObjectFiles │ │ ├── Makefile_Path │ │ ├── MessagePassing.f90 │ │ ├── MessagePassingBasics │ │ │ ├── Communicator_Form.f90 │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── MessagePassingBasics.f90 │ │ │ └── PortalHeader_Form.f90 │ │ └── PointToPoint │ │ │ ├── Makefile_Dependencies │ │ │ ├── Makefile_ObjectFiles │ │ │ ├── MessageIncoming_1D_BI__Form.f90 │ │ │ ├── MessageIncoming_1D_C__Form.f90 │ │ │ ├── MessageIncoming_1D_I__Form.f90 │ │ │ ├── MessageIncoming_1D_R__Form.f90 │ │ │ ├── MessageIncoming_BI__Form.f90 │ │ │ ├── MessageIncoming_C__Form.f90 │ │ │ ├── MessageIncoming_I__Form.f90 │ │ │ ├── MessageIncoming_R__Form.f90 │ │ │ ├── MessageOutgoing_1D_BI__Form.f90 │ │ │ ├── MessageOutgoing_1D_C__Form.f90 │ │ │ ├── MessageOutgoing_1D_I__Form.f90 │ │ │ ├── MessageOutgoing_1D_R__Form.f90 │ │ │ ├── MessageOutgoing_BI__Form.f90 │ │ │ ├── MessageOutgoing_C__Form.f90 │ │ │ ├── MessageOutgoing_I__Form.f90 │ │ │ ├── MessageOutgoing_R__Form.f90 │ │ │ ├── Message_1D__Template.f90 │ │ │ ├── Message_BI__Form.f90 │ │ │ ├── Message_C__Form.f90 │ │ │ ├── Message_I__Form.f90 │ │ │ ├── Message_R__Form.f90 │ │ │ ├── Message_Template.f90 │ │ │ └── PointToPoint.f90 │ ├── Runtime │ │ ├── CommandLineOptions_Form.f90 │ │ ├── GetMemoryUsage_Command.f90 │ │ ├── GetMemoryUsage_macOS_C.c │ │ ├── GetMemoryUsage_macOS_Command.f90 │ │ ├── InitializeRandomSeed_Command.f90 │ │ ├── Makefile_Dependencies │ │ ├── Makefile_ObjectFiles │ │ ├── MemoryUsage_C_macOS.f90 │ │ ├── MemoryUsage_Form.f90 │ │ ├── PROGRAM_HEADER_Singleton.f90 │ │ ├── Runtime.f90 │ │ ├── Timer_1D__Form.f90 │ │ ├── Timer_Form.f90 │ │ └── WallTime_Function.f90 │ └── Specifiers │ │ ├── CONSTANT_Singleton.f90 │ │ ├── Join_Command.f90 │ │ ├── KIND_BIG_Singleton_ASCII.f90 │ │ ├── KIND_BIG_Singleton_ISO_10646.f90 │ │ ├── KIND_DEFAULT_Singleton.f90 │ │ ├── KIND_SMALL_Singleton.f90 │ │ ├── KIND_TINY_Singleton.f90 │ │ ├── LEN_DEFAULT_Singleton.f90 │ │ ├── Makefile_Dependencies │ │ ├── Makefile_ObjectFiles │ │ ├── Quantity_Form.f90 │ │ ├── Specifiers.f90 │ │ ├── Split_Command.f90 │ │ └── UNIT_Singleton.f90 ├── GenASiS.f90 ├── Makefile_Dependencies ├── Makefile_ObjectFiles └── Makefile_Path ├── Programs ├── Examples │ └── Basics │ │ ├── Analysis │ │ ├── DirectoryDifference.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ ├── FileDifference.f90 │ │ ├── GatherMeshBlocksMinMaxAve.f90 │ │ ├── L1_Norm_Function.f90 │ │ └── Makefile_Analysis │ │ ├── FluidDynamics │ │ ├── ConservationLawEvolution_Kernel.f90 │ │ ├── ConservationLawEvolution_Template.f90 │ │ ├── ConservationLawStep_Form.f90 │ │ ├── ConservationLawStep_Kernel.f90 │ │ ├── ConservedFields_Template.f90 │ │ ├── DistributedMesh_Form.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile_FluidDynamics │ │ ├── PlaneWaveAdvection.visit.py │ │ ├── PlaneWaveAdvection_Template.f90 │ │ ├── PolytropicFluid_Form.f90 │ │ ├── PolytropicFluid_Kernel.f90 │ │ ├── PressurelessFluid_Form.f90 │ │ ├── PressurelessFluid_Kernel.f90 │ │ ├── RiemannProblem.f90 │ │ ├── RiemannProblem_2D_SampleOutput │ │ │ ├── RiemannProblem_2D_0000000_MeshBlocks │ │ │ │ ├── RiemannProblem_2D_0000000_MeshBlock_0000000.silo │ │ │ │ ├── RiemannProblem_2D_0000000_MeshBlock_0000001.silo │ │ │ │ ├── RiemannProblem_2D_0000000_MeshBlock_0000002.silo │ │ │ │ └── RiemannProblem_2D_0000000_MeshBlock_0000003.silo │ │ │ ├── RiemannProblem_2D_0000001_MeshBlocks │ │ │ │ ├── RiemannProblem_2D_0000001_MeshBlock_0000000.silo │ │ │ │ ├── RiemannProblem_2D_0000001_MeshBlock_0000001.silo │ │ │ │ ├── RiemannProblem_2D_0000001_MeshBlock_0000002.silo │ │ │ │ └── RiemannProblem_2D_0000001_MeshBlock_0000003.silo │ │ │ ├── RiemannProblem_2D_MultiMesh_0000000.silo │ │ │ ├── RiemannProblem_2D_MultiMesh_0000001.silo │ │ │ └── RiemannProblem_2D_SampleOutput.STDOUT │ │ ├── RiemannProblem_Form.f90 │ │ ├── SawtoothWaveAdvection.f90 │ │ ├── SawtoothWaveAdvection_Form.f90 │ │ ├── SineWaveAdvection.f90 │ │ └── SineWaveAdvection_Form.f90 │ │ └── MolecularDynamics │ │ ├── ArgonEquilibrium.f90 │ │ ├── ClusterDynamics_Template.f90 │ │ ├── ClusterFormation.f90 │ │ ├── ClusterParticles_Form.f90 │ │ ├── DistributedParticles_Form.f90 │ │ ├── Executables │ │ └── Makefile │ │ ├── GravitationalDynamics_Form.f90 │ │ ├── LatticeDynamics_Template.f90 │ │ ├── LatticeParticles_Form.f90 │ │ ├── LennardJonesDynamics_Form.f90 │ │ ├── Makefile_MolecularDynamics │ │ ├── NormalRandomNumber_Function.f90 │ │ ├── Parameters │ │ └── ArgonEquilibrium_3D_Program_Parameters │ │ ├── ParticleDynamics_Template.f90 │ │ └── Particles_Form.f90 └── UnitTests │ └── Basics │ ├── DataManagement │ ├── ArrayArrays │ │ ├── Character_1D__Form_Test.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Integer_1D__Form_Test.f90 │ │ ├── Integer_2D__Form_Test.f90 │ │ ├── Integer_3D__Form_Test.f90 │ │ ├── Makefile_ArrayArrays │ │ ├── Real_1D__Form_Test.f90 │ │ ├── Real_2D__Form_Test.f90 │ │ └── Real_3D__Form_Test.f90 │ ├── ArrayOperations │ │ ├── Clear_Command_Test.f90 │ │ ├── Copy_Command_Test.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile_ArrayOperations │ │ ├── Search_Command_Test.f90 │ │ └── Sort_Command_Test.f90 │ └── Storages │ │ ├── Executables │ │ └── Makefile │ │ ├── Makefile_Storages │ │ ├── PackedStorage_Form_Test.f90 │ │ ├── Storage_1D__Form_Test.f90 │ │ └── Storage_Form_Test.f90 │ ├── Devices │ ├── AllocateDevice_Command_Test.f90 │ ├── AllocateHost_Command_Test.f90 │ ├── AssociateHost_Command_Test.f90 │ ├── DeallocateDevice_Command_Test.f90 │ ├── DeviceAddress_Function_Test.f90 │ ├── DeviceInterface_Test.f90 │ ├── DisassociateHost_Command_Test.f90 │ ├── Executables │ │ └── Makefile │ ├── Makefile_Devices │ └── UpdateDevice_Command_Test.f90 │ ├── Display │ ├── CONSOLE_Singleton_Test.f90 │ ├── ConsoleHeader_Form_Test.f90 │ ├── Executables │ │ └── Makefile │ ├── Makefile_Display │ └── Show_Command_Test.f90 │ ├── FileSystem │ ├── CurveImages │ │ ├── CurveImage_Form_Test.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ └── Makefile_CurveImages │ ├── FileSystemBasics │ │ ├── DelayFileAccess_Command_Test.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ ├── FindParameter_Command_Test.f90 │ │ ├── Makefile_FileSystemBasics │ │ ├── ParameterStream_Form_Test.f90 │ │ ├── Parameters │ │ │ ├── ParameterStream_Form_Test_Parameters │ │ │ └── TableStream_Form_Test_Table │ │ ├── ReadLabelValue_Command_Test.f90 │ │ └── TableStream_Form_Test.f90 │ ├── GridImageBasics │ │ ├── Executables │ │ │ └── Makefile │ │ ├── GridImageStream_Form_Test.f90 │ │ └── Makefile_GridImageBasics │ ├── PointGridImages │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile_PointGridImages │ │ └── PointGridImage_Form_Test.f90 │ ├── StructuredGridImages │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile_StructuredGridImages │ │ └── StructuredGridImage_Form_Test.f90 │ └── UnstructuredGridImages │ │ ├── Executables │ │ └── Makefile │ │ ├── Makefile_UnstructuredGridImages │ │ └── UnstructuredGridImage_Form_Test.f90 │ ├── MessagePassing │ ├── Collective │ │ ├── CollectiveOperation_Form_Test.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile_Collective │ │ └── REDUCTION_Singleton_Test.f90 │ ├── MessagePassingBasics │ │ ├── Communicator_Form_Test.f90 │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile_MessagePassingBasics │ │ └── PortalHeader_Form_Test.f90 │ └── PointToPoint │ │ ├── Executables │ │ └── Makefile │ │ ├── Makefile_PointToPoint │ │ ├── MessageIncomingOutgoing_1D__Forms_Test.f90 │ │ └── MessageIncomingOutgoing_Forms_Test.f90 │ ├── Runtime │ ├── CommandLineOptions_Form_Test.f90 │ ├── Executables │ │ └── Makefile │ ├── GetMemoryUsage_Command_Test.f90 │ ├── IncomingOutgoingMessageArray_Forms_Test.f90 │ ├── InitializeRandomSeed_Command_Test.f90 │ ├── Makefile_Runtime │ ├── PROGRAM_HEADER_Singleton_Test.f90 │ ├── Parameters │ │ ├── PROGRAM_HEADER_Singleton_Test_Program_Parameters │ │ └── SineWaveDerivative_Program_Parameters │ ├── Timer_Form_Test.f90 │ └── WallTime_Function_Test.f90 │ └── Specifiers │ ├── CONSTANT_Singleton_Test.f90 │ ├── Executables │ └── Makefile │ ├── KIND_BIG_Singleton_Test.f90 │ ├── KIND_DEFAULT_Singleton_Test.f90 │ ├── KIND_SMALL_Singleton_Test.f90 │ ├── KIND_TINY_Singleton_Test.f90 │ ├── LEN_DEFAULT_Singleton_Test.f90 │ ├── Makefile_Specifiers │ ├── Quantity_Form_Test.f90 │ ├── SplitJoin_Command_Test.f90 │ └── UNIT_Singleton_Test.f90 ├── README.Basics ├── README.Basics.Files └── Workflow ├── Basics-UnitTest.build.sh └── Basics-UnitTest.run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/Machines/Makefile_Cray_CCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Machines/Makefile_Cray_CCE -------------------------------------------------------------------------------- /Build/Machines/Makefile_Cray_GCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Machines/Makefile_Cray_GCC -------------------------------------------------------------------------------- /Build/Machines/Makefile_Linux_GCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Machines/Makefile_Linux_GCC -------------------------------------------------------------------------------- /Build/Machines/Makefile_POWER_GCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Machines/Makefile_POWER_GCC -------------------------------------------------------------------------------- /Build/Machines/Makefile_POWER_XL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Machines/Makefile_POWER_XL -------------------------------------------------------------------------------- /Build/Makefile_Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Makefile_Build -------------------------------------------------------------------------------- /Build/Makefile_Dependencies: -------------------------------------------------------------------------------- 1 | include $(PATH_MODULES)/Makefile_Dependencies 2 | -------------------------------------------------------------------------------- /Build/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Build/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Makefile_Path -------------------------------------------------------------------------------- /Build/Makefile_Patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Makefile_Patterns -------------------------------------------------------------------------------- /Build/Preprocessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Build/Preprocessor -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/Basics/Basics.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Basics.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/ArrayArrays.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/ArrayArrays.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Character_1D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Character_1D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Complex_3D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Complex_3D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Integer_1D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Integer_1D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Integer_2D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Integer_2D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Integer_3D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Integer_3D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Real_1D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Real_1D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Real_2D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Real_2D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Real_3D_2D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Real_3D_2D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayArrays/Real_3D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayArrays/Real_3D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/Add_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/Add_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/ArrayOperations.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/ArrayOperations.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/Clear_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/Clear_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/Copy_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/Copy_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/MultiplyAdd_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/MultiplyAdd_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/Search_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/Search_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/ArrayOperations/Sort_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/ArrayOperations/Sort_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/DataManagement.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/DataManagement.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Makefile_Path -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Storages/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Storages/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Storages/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Storages/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Storages/PackedStorage_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Storages/PackedStorage_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Storages/Storage_1D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Storages/Storage_1D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Storages/Storage_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Storages/Storage_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/DataManagement/Storages/Storages.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/DataManagement/Storages/Storages.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/AllocateDevice_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/AllocateDevice_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/AllocateHost_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/AllocateHost_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/AssociateHost_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/AssociateHost_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/DeallocateDevice_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/DeallocateDevice_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/DeallocateHost_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/DeallocateHost_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/DeviceAddress_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/DeviceAddress_Function.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/Device_CUDA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/Device_CUDA.c -------------------------------------------------------------------------------- /Modules/Basics/Devices/Device_C_OMP.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/Device_C_OMP.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/Device_HIP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/Device_HIP.c -------------------------------------------------------------------------------- /Modules/Basics/Devices/Device_OMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/Device_OMP.c -------------------------------------------------------------------------------- /Modules/Basics/Devices/Devices.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/Devices.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/DisassociateHost_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/DisassociateHost_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/GetDeviceMemoryInfo_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/GetDeviceMemoryInfo_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/Devices/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/Devices/NumberOfDevices_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/NumberOfDevices_Function.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/OffloadEnabled_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/OffloadEnabled_Function.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/OnDevice_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/OnDevice_Function.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/SelectDevice_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/SelectDevice_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/SelectedDevice_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/SelectedDevice_Function.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/UpdateDevice_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/UpdateDevice_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Devices/UpdateHost_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Devices/UpdateHost_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Display/CONSOLE_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/CONSOLE_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/Display/ConsoleHeader_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/ConsoleHeader_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/Display/Display.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/Display.f90 -------------------------------------------------------------------------------- /Modules/Basics/Display/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/Display/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/Display/ShowCharacter.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/ShowCharacter.f90 -------------------------------------------------------------------------------- /Modules/Basics/Display/ShowInteger.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/ShowInteger.f90 -------------------------------------------------------------------------------- /Modules/Basics/Display/ShowMessage.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/ShowMessage.f90 -------------------------------------------------------------------------------- /Modules/Basics/Display/Show_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Display/Show_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/CurveImages/CurveImage_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/CurveImages/CurveImage_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/CurveImages/CurveImages.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/CurveImages/CurveImages.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/CurveImages/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/CurveImages/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/CurveImages/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/CurveImages/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystem.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystem.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/DelayFileAccess_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/DelayFileAccess_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/FileSystemBasics.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/FileSystemBasics.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/FindParameter_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/FindParameter_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/ParameterStream_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/ParameterStream_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/ReadLabelValue_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/ReadLabelValue_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/FileSystemBasics/TableStream_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/FileSystemBasics/TableStream_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/DB_MeshVariableType_Silo_C.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/DB_MeshVariableType_Silo_C.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/DB_PointMeshType_Silo_C.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/DB_PointMeshType_Silo_C.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/DB_QuadMeshType_Silo_C.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/DB_QuadMeshType_Silo_C.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/DB_QuadVariableType_Silo_C.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/DB_QuadVariableType_Silo_C.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/DB_TableOfContentsType_Silo_C.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/DB_TableOfContentsType_Silo_C.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/DB_UnstructuredMeshType_Silo_C.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/DB_UnstructuredMeshType_Silo_C.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/DB_UnstructuredVariableType_Silo_C.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/DB_UnstructuredVariableType_Silo_C.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/GridImageBasics.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/GridImageBasics.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/GridImageSilo_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/GridImageSilo_Template.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/GridImageStream_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/GridImageStream_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/GridImageStream_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/GridImageStream_Template.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/GridImage_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/GridImage_Template.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/GridImageBasics/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/GridImageBasics/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/Makefile_Path -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/PointGridImages/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/PointGridImages/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/PointGridImages/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/PointGridImages/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/PointGridImages/PointGridImage_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/PointGridImages/PointGridImage_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/PointGridImages/PointGridImages.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/PointGridImages/PointGridImages.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/StructuredGridImages/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/StructuredGridImages/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/StructuredGridImages/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/StructuredGridImages/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/StructuredGridImages/StructuredGridImage_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/StructuredGridImages/StructuredGridImage_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/StructuredGridImages/StructuredGridImages.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/StructuredGridImages/StructuredGridImages.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/UnstructuredGridImages/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/UnstructuredGridImages/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/UnstructuredGridImages/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/UnstructuredGridImages/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/UnstructuredGridImages/UnstructuredGridImage_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/UnstructuredGridImages/UnstructuredGridImage_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/FileSystem/UnstructuredGridImages/UnstructuredGridImages.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/FileSystem/UnstructuredGridImages/UnstructuredGridImages.f90 -------------------------------------------------------------------------------- /Modules/Basics/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Makefile_Path -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/Collective.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/Collective.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/CollectiveOperation_BI__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/CollectiveOperation_BI__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/CollectiveOperation_C__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/CollectiveOperation_C__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/CollectiveOperation_I__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/CollectiveOperation_I__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/CollectiveOperation_R__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/CollectiveOperation_R__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/CollectiveOperation_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/CollectiveOperation_Template.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Collective/REDUCTION_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Collective/REDUCTION_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/Makefile_Path -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/MessagePassing.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/MessagePassing.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/MessagePassingBasics/Communicator_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/MessagePassingBasics/Communicator_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/MessagePassingBasics/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/MessagePassingBasics/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/MessagePassingBasics/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/MessagePassingBasics/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/MessagePassingBasics/MessagePassingBasics.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/MessagePassingBasics/MessagePassingBasics.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/MessagePassingBasics/PortalHeader_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/MessagePassingBasics/PortalHeader_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_BI__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_BI__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_C__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_C__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_I__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_I__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_R__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_1D_R__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_BI__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_BI__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_C__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_C__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_I__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_I__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_R__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageIncoming_R__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_BI__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_BI__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_C__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_C__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_I__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_I__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_R__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_1D_R__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_BI__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_BI__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_C__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_C__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_I__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_I__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_R__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/MessageOutgoing_R__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Message_1D__Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Message_1D__Template.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Message_BI__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Message_BI__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Message_C__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Message_C__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Message_I__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Message_I__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Message_R__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Message_R__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/Message_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/Message_Template.f90 -------------------------------------------------------------------------------- /Modules/Basics/MessagePassing/PointToPoint/PointToPoint.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/MessagePassing/PointToPoint/PointToPoint.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/CommandLineOptions_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/CommandLineOptions_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/GetMemoryUsage_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/GetMemoryUsage_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/GetMemoryUsage_macOS_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/GetMemoryUsage_macOS_C.c -------------------------------------------------------------------------------- /Modules/Basics/Runtime/GetMemoryUsage_macOS_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/GetMemoryUsage_macOS_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/InitializeRandomSeed_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/InitializeRandomSeed_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/Runtime/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/Runtime/MemoryUsage_C_macOS.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/MemoryUsage_C_macOS.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/MemoryUsage_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/MemoryUsage_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/PROGRAM_HEADER_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/PROGRAM_HEADER_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/Runtime.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/Runtime.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/Timer_1D__Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/Timer_1D__Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/Timer_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/Timer_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/Runtime/WallTime_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Runtime/WallTime_Function.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/CONSTANT_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/CONSTANT_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/Join_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/Join_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/KIND_BIG_Singleton_ASCII.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/KIND_BIG_Singleton_ASCII.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/KIND_BIG_Singleton_ISO_10646.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/KIND_BIG_Singleton_ISO_10646.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/KIND_DEFAULT_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/KIND_DEFAULT_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/KIND_SMALL_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/KIND_SMALL_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/KIND_TINY_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/KIND_TINY_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/LEN_DEFAULT_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/LEN_DEFAULT_Singleton.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/Quantity_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/Quantity_Form.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/Specifiers.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/Specifiers.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/Split_Command.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/Split_Command.f90 -------------------------------------------------------------------------------- /Modules/Basics/Specifiers/UNIT_Singleton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Basics/Specifiers/UNIT_Singleton.f90 -------------------------------------------------------------------------------- /Modules/GenASiS.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/GenASiS.f90 -------------------------------------------------------------------------------- /Modules/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Makefile_Dependencies -------------------------------------------------------------------------------- /Modules/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Makefile_ObjectFiles -------------------------------------------------------------------------------- /Modules/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Modules/Makefile_Path -------------------------------------------------------------------------------- /Programs/Examples/Basics/Analysis/DirectoryDifference.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/Analysis/DirectoryDifference.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/Analysis/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/Analysis/Executables/Makefile -------------------------------------------------------------------------------- /Programs/Examples/Basics/Analysis/FileDifference.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/Analysis/FileDifference.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/Analysis/GatherMeshBlocksMinMaxAve.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/Analysis/GatherMeshBlocksMinMaxAve.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/Analysis/L1_Norm_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/Analysis/L1_Norm_Function.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/Analysis/Makefile_Analysis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/Analysis/Makefile_Analysis -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/ConservationLawEvolution_Kernel.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/ConservationLawEvolution_Kernel.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/ConservationLawEvolution_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/ConservationLawEvolution_Template.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/ConservationLawStep_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/ConservationLawStep_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/ConservationLawStep_Kernel.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/ConservationLawStep_Kernel.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/ConservedFields_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/ConservedFields_Template.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/DistributedMesh_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/DistributedMesh_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/Executables/Makefile -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/Makefile_FluidDynamics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/Makefile_FluidDynamics -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/PlaneWaveAdvection.visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/PlaneWaveAdvection.visit.py -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/PlaneWaveAdvection_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/PlaneWaveAdvection_Template.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/PolytropicFluid_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/PolytropicFluid_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/PolytropicFluid_Kernel.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/PolytropicFluid_Kernel.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/PressurelessFluid_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/PressurelessFluid_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/PressurelessFluid_Kernel.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/PressurelessFluid_Kernel.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000000.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000000.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000001.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000001.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000002.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000002.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000003.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000000_MeshBlocks/RiemannProblem_2D_0000000_MeshBlock_0000003.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000000.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000000.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000001.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000001.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000002.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000002.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000003.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_0000001_MeshBlocks/RiemannProblem_2D_0000001_MeshBlock_0000003.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_MultiMesh_0000000.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_MultiMesh_0000000.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_MultiMesh_0000001.silo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_MultiMesh_0000001.silo -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_SampleOutput.STDOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_2D_SampleOutput/RiemannProblem_2D_SampleOutput.STDOUT -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/RiemannProblem_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/RiemannProblem_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/SawtoothWaveAdvection.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/SawtoothWaveAdvection.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/SawtoothWaveAdvection_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/SawtoothWaveAdvection_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/SineWaveAdvection.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/SineWaveAdvection.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/FluidDynamics/SineWaveAdvection_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/FluidDynamics/SineWaveAdvection_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/ArgonEquilibrium.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/ArgonEquilibrium.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/ClusterDynamics_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/ClusterDynamics_Template.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/ClusterFormation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/ClusterFormation.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/ClusterParticles_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/ClusterParticles_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/DistributedParticles_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/DistributedParticles_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/Executables/Makefile -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/GravitationalDynamics_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/GravitationalDynamics_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/LatticeDynamics_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/LatticeDynamics_Template.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/LatticeParticles_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/LatticeParticles_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/LennardJonesDynamics_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/LennardJonesDynamics_Form.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/Makefile_MolecularDynamics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/Makefile_MolecularDynamics -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/NormalRandomNumber_Function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/NormalRandomNumber_Function.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/Parameters/ArgonEquilibrium_3D_Program_Parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/Parameters/ArgonEquilibrium_3D_Program_Parameters -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/ParticleDynamics_Template.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/ParticleDynamics_Template.f90 -------------------------------------------------------------------------------- /Programs/Examples/Basics/MolecularDynamics/Particles_Form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/Examples/Basics/MolecularDynamics/Particles_Form.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Character_1D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Character_1D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Integer_1D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Integer_1D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Integer_2D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Integer_2D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Integer_3D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Integer_3D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Makefile_ArrayArrays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Makefile_ArrayArrays -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Real_1D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Real_1D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Real_2D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Real_2D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayArrays/Real_3D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayArrays/Real_3D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayOperations/Clear_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayOperations/Clear_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayOperations/Copy_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayOperations/Copy_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayOperations/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayOperations/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayOperations/Makefile_ArrayOperations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayOperations/Makefile_ArrayOperations -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayOperations/Search_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayOperations/Search_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/ArrayOperations/Sort_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/ArrayOperations/Sort_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/Storages/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/Storages/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/Storages/Makefile_Storages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/Storages/Makefile_Storages -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/Storages/PackedStorage_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/Storages/PackedStorage_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/Storages/Storage_1D__Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/Storages/Storage_1D__Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/DataManagement/Storages/Storage_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/DataManagement/Storages/Storage_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/AllocateDevice_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/AllocateDevice_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/AllocateHost_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/AllocateHost_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/AssociateHost_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/AssociateHost_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/DeallocateDevice_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/DeallocateDevice_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/DeviceAddress_Function_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/DeviceAddress_Function_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/DeviceInterface_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/DeviceInterface_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/DisassociateHost_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/DisassociateHost_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/Makefile_Devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/Makefile_Devices -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Devices/UpdateDevice_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Devices/UpdateDevice_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Display/CONSOLE_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Display/CONSOLE_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Display/ConsoleHeader_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Display/ConsoleHeader_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Display/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Display/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Display/Makefile_Display: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Display/Makefile_Display -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Display/Show_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Display/Show_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/CurveImages/CurveImage_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/CurveImages/CurveImage_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/CurveImages/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/CurveImages/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/CurveImages/Makefile_CurveImages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/CurveImages/Makefile_CurveImages -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/DelayFileAccess_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/DelayFileAccess_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/FindParameter_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/FindParameter_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Makefile_FileSystemBasics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Makefile_FileSystemBasics -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/ParameterStream_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/ParameterStream_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Parameters/ParameterStream_Form_Test_Parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Parameters/ParameterStream_Form_Test_Parameters -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Parameters/TableStream_Form_Test_Table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/Parameters/TableStream_Form_Test_Table -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/ReadLabelValue_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/ReadLabelValue_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/FileSystemBasics/TableStream_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/FileSystemBasics/TableStream_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/GridImageBasics/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/GridImageBasics/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/GridImageBasics/GridImageStream_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/GridImageBasics/GridImageStream_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/GridImageBasics/Makefile_GridImageBasics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/GridImageBasics/Makefile_GridImageBasics -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/PointGridImages/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/PointGridImages/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/PointGridImages/Makefile_PointGridImages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/PointGridImages/Makefile_PointGridImages -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/PointGridImages/PointGridImage_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/PointGridImages/PointGridImage_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/StructuredGridImages/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/StructuredGridImages/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/StructuredGridImages/Makefile_StructuredGridImages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/StructuredGridImages/Makefile_StructuredGridImages -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/StructuredGridImages/StructuredGridImage_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/StructuredGridImages/StructuredGridImage_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/UnstructuredGridImages/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/UnstructuredGridImages/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/UnstructuredGridImages/Makefile_UnstructuredGridImages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/UnstructuredGridImages/Makefile_UnstructuredGridImages -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/FileSystem/UnstructuredGridImages/UnstructuredGridImage_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/FileSystem/UnstructuredGridImages/UnstructuredGridImage_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/Collective/CollectiveOperation_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/Collective/CollectiveOperation_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/Collective/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/Collective/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/Collective/Makefile_Collective: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/Collective/Makefile_Collective -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/Collective/REDUCTION_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/Collective/REDUCTION_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/Communicator_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/Communicator_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/Makefile_MessagePassingBasics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/Makefile_MessagePassingBasics -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/PortalHeader_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/MessagePassingBasics/PortalHeader_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/PointToPoint/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/PointToPoint/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/PointToPoint/Makefile_PointToPoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/PointToPoint/Makefile_PointToPoint -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/PointToPoint/MessageIncomingOutgoing_1D__Forms_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/PointToPoint/MessageIncomingOutgoing_1D__Forms_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/MessagePassing/PointToPoint/MessageIncomingOutgoing_Forms_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/MessagePassing/PointToPoint/MessageIncomingOutgoing_Forms_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/CommandLineOptions_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/CommandLineOptions_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/GetMemoryUsage_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/GetMemoryUsage_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/IncomingOutgoingMessageArray_Forms_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/IncomingOutgoingMessageArray_Forms_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/InitializeRandomSeed_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/InitializeRandomSeed_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/Makefile_Runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/Makefile_Runtime -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/PROGRAM_HEADER_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/PROGRAM_HEADER_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/Parameters/PROGRAM_HEADER_Singleton_Test_Program_Parameters: -------------------------------------------------------------------------------- 1 | Verbosity=INFO_5 2 | -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/Parameters/SineWaveDerivative_Program_Parameters: -------------------------------------------------------------------------------- 1 | nPoints=125 2 | -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/Timer_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/Timer_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Runtime/WallTime_Function_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Runtime/WallTime_Function_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/CONSTANT_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/CONSTANT_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/Executables/Makefile -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/KIND_BIG_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/KIND_BIG_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/KIND_DEFAULT_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/KIND_DEFAULT_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/KIND_SMALL_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/KIND_SMALL_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/KIND_TINY_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/KIND_TINY_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/LEN_DEFAULT_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/LEN_DEFAULT_Singleton_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/Makefile_Specifiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/Makefile_Specifiers -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/Quantity_Form_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/Quantity_Form_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/SplitJoin_Command_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/SplitJoin_Command_Test.f90 -------------------------------------------------------------------------------- /Programs/UnitTests/Basics/Specifiers/UNIT_Singleton_Test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Programs/UnitTests/Basics/Specifiers/UNIT_Singleton_Test.f90 -------------------------------------------------------------------------------- /README.Basics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/README.Basics -------------------------------------------------------------------------------- /README.Basics.Files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/README.Basics.Files -------------------------------------------------------------------------------- /Workflow/Basics-UnitTest.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Workflow/Basics-UnitTest.build.sh -------------------------------------------------------------------------------- /Workflow/Basics-UnitTest.run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenASiS/GenASiS_Basics/HEAD/Workflow/Basics-UnitTest.run.sh --------------------------------------------------------------------------------