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.
- Host: GitHub
- URL: https://github.com/danielfleischer/optimize-fortran
- Owner: danielfleischer
- Created: 2018-02-08T11:58:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-08T12:00:16.000Z (over 8 years ago)
- Last Synced: 2026-02-01T15:54:50.210Z (5 months ago)
- Language: Fortran
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.