~ubuntu-branches/ubuntu/trusty/nwchem/trusty-proposed

« back to all changes in this revision

Viewing changes to src/lapack/single/slabad.f

  • Committer: Package Import Robot
  • Author(s): Michael Banck, Daniel Leidert, Andreas Tille, Michael Banck
  • Date: 2013-07-04 12:14:55 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130704121455-5tvsx2qabor3nrui
Tags: 6.3-1
* New upstream release.
* Fixes anisotropic properties (Closes: #696361).
* New features include:
  + Multi-reference coupled cluster (MRCC) approaches
  + Hybrid DFT calculations with short-range HF 
  + New density-functionals including Minnesota (M08, M11) and HSE hybrid
    functionals
  + X-ray absorption spectroscopy (XAS) with TDDFT
  + Analytical gradients for the COSMO solvation model
  + Transition densities from TDDFT 
  + DFT+U and Electron-Transfer (ET) methods for plane wave calculations
  + Exploitation of space group symmetry in plane wave geometry optimizations
  + Local density of states (LDOS) collective variable added to Metadynamics
  + Various new XC functionals added for plane wave calculations, including
    hybrid and range-corrected ones
  + Electric field gradients with relativistic corrections 
  + Nudged Elastic Band optimization method
  + Updated basis sets and ECPs 

[ Daniel Leidert ]
* debian/watch: Fixed.

[ Andreas Tille ]
* debian/upstream: References

[ Michael Banck ]
* debian/upstream (Name): New field.
* debian/patches/02_makefile_flags.patch: Refreshed.
* debian/patches/06_statfs_kfreebsd.patch: Likewise.
* debian/patches/07_ga_target_force_linux.patch: Likewise.
* debian/patches/05_avoid_inline_assembler.patch: Removed, no longer needed.
* debian/patches/09_backported_6.1.1_fixes.patch: Likewise.
* debian/control (Build-Depends): Added gfortran-4.7 and gcc-4.7.
* debian/patches/10_force_gcc-4.7.patch: New patch, explicitly sets
  gfortran-4.7 and gcc-4.7, fixes test suite hang with gcc-4.8 (Closes:
  #701328, #713262).
* debian/testsuite: Added tests for COSMO analytical gradients and MRCC.
* debian/rules (MRCC_METHODS): New variable, required to enable MRCC methods.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
*> \brief \b SLABAD
 
2
*
 
3
*  =========== DOCUMENTATION ===========
 
4
*
 
5
* Online html documentation available at 
 
6
*            http://www.netlib.org/lapack/explore-html/ 
 
7
*
 
8
*> \htmlonly
 
9
*> Download SLABAD + dependencies 
 
10
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slabad.f"> 
 
11
*> [TGZ]</a> 
 
12
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/slabad.f"> 
 
13
*> [ZIP]</a> 
 
14
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/slabad.f"> 
 
15
*> [TXT]</a>
 
16
*> \endhtmlonly 
 
17
*
 
18
*  Definition:
 
19
*  ===========
 
20
*
 
21
*       SUBROUTINE SLABAD( SMALL, LARGE )
 
22
 
23
*       .. Scalar Arguments ..
 
24
*       REAL               LARGE, SMALL
 
25
*       ..
 
26
*  
 
27
*
 
28
*> \par Purpose:
 
29
*  =============
 
30
*>
 
31
*> \verbatim
 
32
*>
 
33
*> SLABAD takes as input the values computed by SLAMCH for underflow and
 
34
*> overflow, and returns the square root of each of these values if the
 
35
*> log of LARGE is sufficiently large.  This subroutine is intended to
 
36
*> identify machines with a large exponent range, such as the Crays, and
 
37
*> redefine the underflow and overflow limits to be the square roots of
 
38
*> the values computed by SLAMCH.  This subroutine is needed because
 
39
*> SLAMCH does not compensate for poor arithmetic in the upper half of
 
40
*> the exponent range, as is found on a Cray.
 
41
*> \endverbatim
 
42
*
 
43
*  Arguments:
 
44
*  ==========
 
45
*
 
46
*> \param[in,out] SMALL
 
47
*> \verbatim
 
48
*>          SMALL is REAL
 
49
*>          On entry, the underflow threshold as computed by SLAMCH.
 
50
*>          On exit, if LOG10(LARGE) is sufficiently large, the square
 
51
*>          root of SMALL, otherwise unchanged.
 
52
*> \endverbatim
 
53
*>
 
54
*> \param[in,out] LARGE
 
55
*> \verbatim
 
56
*>          LARGE is REAL
 
57
*>          On entry, the overflow threshold as computed by SLAMCH.
 
58
*>          On exit, if LOG10(LARGE) is sufficiently large, the square
 
59
*>          root of LARGE, otherwise unchanged.
 
60
*> \endverbatim
 
61
*
 
62
*  Authors:
 
63
*  ========
 
64
*
 
65
*> \author Univ. of Tennessee 
 
66
*> \author Univ. of California Berkeley 
 
67
*> \author Univ. of Colorado Denver 
 
68
*> \author NAG Ltd. 
 
69
*
 
70
*> \date November 2011
 
71
*
 
72
*> \ingroup auxOTHERauxiliary
 
73
*
 
74
*  =====================================================================
1
75
      SUBROUTINE SLABAD( SMALL, LARGE )
2
 
C$Id: slabad.f 19697 2010-10-29 16:57:34Z d3y133 $                          
3
76
*
4
 
*  -- LAPACK auxiliary routine (version 3.0) --
5
 
*     Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
6
 
*     Courant Institute, Argonne National Lab, and Rice University
7
 
*     October 31, 1992
 
77
*  -- LAPACK auxiliary routine (version 3.4.0) --
 
78
*  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 
79
*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 
80
*     November 2011
8
81
*
9
82
*     .. Scalar Arguments ..
10
83
      REAL               LARGE, SMALL
11
84
*     ..
12
85
*
13
 
*  Purpose
14
 
*  =======
15
 
*
16
 
*  SLABAD takes as input the values computed by SLAMCH for underflow and
17
 
*  overflow, and returns the square root of each of these values if the
18
 
*  log of LARGE is sufficiently large.  This subroutine is intended to
19
 
*  identify machines with a large exponent range, such as the Crays, and
20
 
*  redefine the underflow and overflow limits to be the square roots of
21
 
*  the values computed by SLAMCH.  This subroutine is needed because
22
 
*  SLAMCH does not compensate for poor arithmetic in the upper half of
23
 
*  the exponent range, as is found on a Cray.
24
 
*
25
 
*  Arguments
26
 
*  =========
27
 
*
28
 
*  SMALL   (input/output) REAL
29
 
*          On entry, the underflow threshold as computed by SLAMCH.
30
 
*          On exit, if LOG10(LARGE) is sufficiently large, the square
31
 
*          root of SMALL, otherwise unchanged.
32
 
*
33
 
*  LARGE   (input/output) REAL
34
 
*          On entry, the overflow threshold as computed by SLAMCH.
35
 
*          On exit, if LOG10(LARGE) is sufficiently large, the square
36
 
*          root of LARGE, otherwise unchanged.
37
 
*
38
86
*  =====================================================================
39
87
*
40
88
*     .. Intrinsic Functions ..