~ubuntu-branches/ubuntu/utopic/nwchem/utopic

« back to all changes in this revision

Viewing changes to src/lapack/single/slapy2.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 SLAPY2 returns sqrt(x2+y2).
 
2
*
 
3
*  =========== DOCUMENTATION ===========
 
4
*
 
5
* Online html documentation available at 
 
6
*            http://www.netlib.org/lapack/explore-html/ 
 
7
*
 
8
*> \htmlonly
 
9
*> Download SLAPY2 + dependencies 
 
10
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slapy2.f"> 
 
11
*> [TGZ]</a> 
 
12
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/slapy2.f"> 
 
13
*> [ZIP]</a> 
 
14
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/slapy2.f"> 
 
15
*> [TXT]</a>
 
16
*> \endhtmlonly 
 
17
*
 
18
*  Definition:
 
19
*  ===========
 
20
*
 
21
*       REAL             FUNCTION SLAPY2( X, Y )
 
22
 
23
*       .. Scalar Arguments ..
 
24
*       REAL               X, Y
 
25
*       ..
 
26
*  
 
27
*
 
28
*> \par Purpose:
 
29
*  =============
 
30
*>
 
31
*> \verbatim
 
32
*>
 
33
*> SLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
 
34
*> overflow.
 
35
*> \endverbatim
 
36
*
 
37
*  Arguments:
 
38
*  ==========
 
39
*
 
40
*> \param[in] X
 
41
*> \verbatim
 
42
*>          X is REAL
 
43
*> \endverbatim
 
44
*>
 
45
*> \param[in] Y
 
46
*> \verbatim
 
47
*>          Y is REAL
 
48
*>          X and Y specify the values x and y.
 
49
*> \endverbatim
 
50
*
 
51
*  Authors:
 
52
*  ========
 
53
*
 
54
*> \author Univ. of Tennessee 
 
55
*> \author Univ. of California Berkeley 
 
56
*> \author Univ. of Colorado Denver 
 
57
*> \author NAG Ltd. 
 
58
*
 
59
*> \date September 2012
 
60
*
 
61
*> \ingroup auxOTHERauxiliary
 
62
*
 
63
*  =====================================================================
1
64
      REAL             FUNCTION SLAPY2( X, Y )
2
65
*
3
 
*  -- LAPACK auxiliary routine (version 2.0) --
4
 
*     Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
5
 
*     Courant Institute, Argonne National Lab, and Rice University
6
 
*     October 31, 1992
 
66
*  -- LAPACK auxiliary routine (version 3.4.2) --
 
67
*  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 
68
*  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 
69
*     September 2012
7
70
*
8
71
*     .. Scalar Arguments ..
9
72
      REAL               X, Y
10
73
*     ..
11
74
*
12
 
c
13
 
* $Id: slapy2.f 19697 2010-10-29 16:57:34Z d3y133 $
14
 
c
15
 
*  Purpose
16
 
*  =======
17
 
*
18
 
*  SLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
19
 
*  overflow.
20
 
*
21
 
*  Arguments
22
 
*  =========
23
 
*
24
 
*  X       (input) REAL
25
 
*  Y       (input) REAL
26
 
*          X and Y specify the values x and y.
27
 
*
28
75
*  =====================================================================
29
76
*
30
77
*     .. Parameters ..