~ubuntu-branches/ubuntu/maverick/openturns/maverick

« back to all changes in this revision

Viewing changes to lib/src/Uncertainty/Algorithm/IsoProbabilisticTransformation/NatafIndependentCopula/NatafIndependentCopulaEvaluation.hxx

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-05-10 17:27:55 UTC
  • mfrom: (1.1.4 upstream) (5.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100510172755-cb5ynskknqqi5rhp
Tags: 0.13.2-2ubuntu1
* Merge with Debian testing. No changes left.
* ubuntu_fix-python-2.6.patch: fix detection of python 2.6 libs, to not use
  LOCALMODLIBS. This pulls a dependency on SSL and makes the package FTBFS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *  @file  NatafIndependentCopulaEvaluation.hxx
4
4
 *  @brief Class for the Nataf transformation evaluation for independent
5
5
 *
6
 
 *  (C) Copyright 2005-2007 EDF-EADS-Phimeca
 
6
 *  (C) Copyright 2005-2010 EDF-EADS-Phimeca
7
7
 *
8
8
 *  This library is free software; you can redistribute it and/or
9
9
 *  modify it under the terms of the GNU Lesser General Public
20
20
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21
21
 *
22
22
 *  @author: $LastChangedBy: dutka $
23
 
 *  @date:   $LastChangedDate: 2009-05-28 14:47:53 +0200 (jeu. 28 mai 2009) $
24
 
 *  Id:      $Id: NatafIndependentCopulaEvaluation.hxx 1262 2009-05-28 12:47:53Z dutka $
 
23
 *  @date:   $LastChangedDate: 2010-02-04 16:44:49 +0100 (jeu. 04 févr. 2010) $
 
24
 *  Id:      $Id: NatafIndependentCopulaEvaluation.hxx 1473 2010-02-04 15:44:49Z dutka $
25
25
 */
26
26
#ifndef OPENTURNS_NATAFINDEPENDENTCOPULAEVALUATION_HXX
27
27
#define OPENTURNS_NATAFINDEPENDENTCOPULAEVALUATION_HXX
62
62
 
63
63
        /** Evaluation */
64
64
        NumericalPoint operator () (const NumericalPoint & in) const
65
 
          throw (InvalidArgumentException, InternalException);
 
65
          /* throw (InvalidArgumentException, InternalException) */;
66
66
 
67
67
        /** Gradient according to the marginal parameters */
68
68
        virtual Matrix parametersGradient(const NumericalPoint & in) const;
69
69
          
70
70
        /** Accessor for input point dimension */
71
 
        virtual UnsignedLong getInputNumericalPointDimension() const
72
 
          throw(InternalException);
 
71
        virtual UnsignedLong getInputDimension() const
 
72
          /* throw(InternalException) */;
73
73
 
74
74
        /** Accessor for output point dimension */
75
 
        virtual UnsignedLong getOutputNumericalPointDimension() const
76
 
          throw(InternalException);
 
75
        virtual UnsignedLong getOutputDimension() const
 
76
          /* throw(InternalException) */;
77
77
 
78
78
        /** String converter */
79
79
        virtual String __repr__() const;