An open API service indexing awesome lists of open source software.

https://github.com/danielfleischer/optimize-fortran

1D function optimizer written in Fortran.
https://github.com/danielfleischer/optimize-fortran

Last synced: 4 months ago
JSON representation

1D function optimizer written in Fortran.

Awesome Lists containing this project

README

          

# Golden-section search Algorithm

We implement the [golden-section](https://en.wikipedia.org/wiki/Golden-section_search) algorithm in Fortran90.

Compile and run by
```sh
make
./OPTIMIZE -5.0 5.0
```
where the command line arguments are the interval of search.

Function is defined in `my_function`.