fx Derived Type

type, private :: fx

an [x,f(x)] cached pair. x is a vector and f is a vector.


Inherited by

type~~fx~~InheritedByGraph type~fx fx type~function_cache function_cache type~function_cache->type~fx c

Components

Type Visibility Attributes Name Initial
integer(kind=ip), private, dimension(:), allocatable :: x

vector of input values

integer(kind=ip), private, dimension(:), allocatable :: f

output functions


Source Code

    type :: fx
        !! an [x,f(x)] cached pair.
        !! x is a vector and f is a vector.
        private
        integer(ip),dimension(:),allocatable :: x    !! vector of input values
        integer(ip),dimension(:),allocatable :: f    !! output functions
    end type fx