Skip to content

Commit

Permalink
removed intrinsic declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Nov 10, 2023
1 parent 144420f commit 24c61ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ Derivative free 1D function minimizer in modern Fortran

### Compiling

A [Fortran Package Manager](https://github.com/fortran-lang/fpm) manifest file is included, so that the library and tests cases can be compiled with FPM. For example:
A [Fortran Package Manager](https://github.com/fortran-lang/fpm) manifest file is included, so that the library and test cases can be compiled with FPM. For example:

```
fpm build --profile release
Expand Down
1 change: 0 additions & 1 deletion src/fmin_module.F90
Expand Up @@ -96,7 +96,6 @@ function fmin(f,ax,bx,tol) result(xmin)

real(wp) :: a,b,d,e,xm,p,q,r,tol1,tol2,u,v,w
real(wp) :: fu,fv,fw,fx,x
real(wp) :: abs,sqrt,sign

real(wp),parameter :: c = (3.0_wp-sqrt(5.0_wp))/2.0_wp !! squared inverse of golden ratio
real(wp),parameter :: half = 0.5_wp
Expand Down

0 comments on commit 24c61ec

Please sign in to comment.