diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2012-02-15 15:43:22 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2012-02-15 15:43:22 +0000 |
commit | 49ae1d6ed1e9f3b788406ead943a2e42ec54c43d (patch) | |
tree | bd59770f7d1afddf3b37f2f32f8e04da854efe0b /interface | |
parent | 3b2ea2fcbc7ea22506fd82015937a7f93d8dbc34 (diff) | |
download | opt-utilities-49ae1d6ed1e9f3b788406ead943a2e42ec54c43d.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@222 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'interface')
-rw-r--r-- | interface/fortran_example.f90 | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/interface/fortran_example.f90 b/interface/fortran_example.f90 index 3b0d7b0..024abb2 100644 --- a/interface/fortran_example.f90 +++ b/interface/fortran_example.f90 @@ -9,9 +9,13 @@ end function foo program main double precision foo double precision p(2) - p(1)=4 - p(2)=5 + integer np + double precision precision + np=2 + precision=1e-10 + p(1)=4000 + p(2)=5000 write(*,*) p,foo(p) - call optimize_powell(foo,2,p,1E-10) + call optimize_powell(foo,np,p,precision) write(*,*) p,foo(p) end program main |