equation_pointer Derived Type

type, public :: equation_pointer

A type with pointer that can point to the equation class and any derived class.


Inherits

type~~equation_pointer~~InheritsGraph type~equation_pointer equation_pointer type~equation equation type~equation_pointer->type~equation p

Inherited by

type~~equation_pointer~~InheritedByGraph type~equation_pointer equation_pointer type~integrator integrator type~integrator->type~equation_pointer eqs type~abmv5 abmv5 type~abmv5->type~integrator type~rk5 rk5 type~rk5->type~integrator type~rk4 rk4 type~rk4->type~integrator

Contents

Source Code


Components

TypeVisibility AttributesNameInitial
class(equation), public, pointer:: p

A pointer to the equation class.


Source Code

  type :: equation_pointer
  !! A type with pointer that can point to the equation class and any derived
  !! class.
    class(equation), pointer :: p
    !! A pointer to the equation class.
  end type equation_pointer