NLSL
iterat.f90
Go to the documentation of this file.
1 c NLSL Version 1.9.0 beta 2/12/15
2 c----------------------------------------------------------------------
3 c =========================
4 c module ITERAT
5 c =========================
6 c
7 c Iteration counter, residual norm, and related statistical quantities
8 c for nonlinear least-squares procedure
9 c----------------------------------------------------------------------
10 c
11  module iterat
12  implicit none
13 c
14  integer, save :: iter, iwflag
15  double precision , save :: fnorm, chisqr, rdchsq,
18  logical, save :: newitr, covarok, xreset
19 c
20  end module iterat
21 
22 
23 
24 
25 
26 
double precision, save fnmin
Definition: iterat.f90:15
integer, save iter
Definition: iterat.f90:14
double precision, save qfit
Definition: iterat.f90:15
double precision, save confid
Definition: iterat.f90:15
double precision, save rdchsq
Definition: iterat.f90:15
double precision, save f2bnd
Definition: iterat.f90:15
double precision, save fnorm
Definition: iterat.f90:15
integer, save iwflag
Definition: iterat.f90:14
double precision, save chnbnd
Definition: iterat.f90:15
double precision, save tbound
Definition: iterat.f90:15
double precision, save ch2bnd
Definition: iterat.f90:15
double precision, save fnbnd
Definition: iterat.f90:15
double precision, save delchi1
Definition: iterat.f90:15
logical, save covarok
Definition: iterat.f90:18
logical, save xreset
Definition: iterat.f90:18
double precision, save chisqr
Definition: iterat.f90:15
logical, save newitr
Definition: iterat.f90:18