powellopt.f90 Source File


This file depends on

sourcefile~~powellopt.f90~~EfferentGraph sourcefile~powellopt.f90 powellopt.f90 sourcefile~bobyqa.f90 bobyqa.f90 sourcefile~powellopt.f90->sourcefile~bobyqa.f90 sourcefile~cobyla.f90 cobyla.f90 sourcefile~powellopt.f90->sourcefile~cobyla.f90 sourcefile~lincoa.f90 lincoa.f90 sourcefile~powellopt.f90->sourcefile~lincoa.f90 sourcefile~newuoa.f90 newuoa.f90 sourcefile~powellopt.f90->sourcefile~newuoa.f90 sourcefile~uobyqa.f90 uobyqa.f90 sourcefile~powellopt.f90->sourcefile~uobyqa.f90 sourcefile~kind_module.f90 kind_module.f90 sourcefile~bobyqa.f90->sourcefile~kind_module.f90 sourcefile~cobyla.f90->sourcefile~kind_module.f90 sourcefile~lincoa.f90->sourcefile~kind_module.f90 sourcefile~newuoa.f90->sourcefile~kind_module.f90 sourcefile~uobyqa.f90->sourcefile~kind_module.f90

Source Code

!*****************************************************************************************
!>
!  PowellOpt Module

    module powellopt
    
    use bobyqa_module
    use cobyla_module
    use lincoa_module
    use newuoa_module
    use uobyqa_module
    
    implicit none
    
    public
    
    end module powellopt
!*****************************************************************************************