Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CLessonVariables.f90 223 B

пре 1 година
пре 1 година
пре 1 година
123456789
  1. module CLessonVariables
  2. implicit none
  3. public
  4. type:: LessonType
  5. logical :: IsPathGeneration
  6. logical :: IsWellSurveyData
  7. end type LessonType
  8. type(LessonType)::Lesson
  9. end module CLessonVariables