src-HCD-5D update
[unres.git] / source / unres / src-HCD-5D / linmin.f
1 c
2 c
3 c     ###################################################
4 c     ##  COPYRIGHT (C)  1992  by  Jay William Ponder  ##
5 c     ##              All Rights Reserved              ##
6 c     ###################################################
7 c
8 c     ##############################################################
9 c     ##                                                          ##
10 c     ##  module linmin  --  line search minimization parameters  ##
11 c     ##                                                          ##
12 c     ##############################################################
13 c
14 c
15 c     stpmin   minimum step length in current line search direction
16 c     stpmax   maximum step length in current line search direction
17 c     cappa    stringency of line search (0=tight < cappa < 1=loose)
18 c     slpmax   projected gradient above which stepsize is reduced
19 c     angmax   maximum angle between search direction and -gradient
20 c     intmax   maximum number of interpolations during line search
21 c
22 c
23       module linmin
24       implicit none
25       integer intmax
26       real*8 stpmin
27       real*8 stpmax
28       real*8 cappa
29       real*8 slpmax
30       real*8 angmax
31       save
32       end