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

« back to all changes in this revision

Viewing changes to lib/src/Base/Func/LinearCombinationGradientImplementation.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  LinearCombinationGradientImplementation.hxx
4
4
 *  @brief The gradient part of linear combination of polynomials
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
69
69
 
70
70
        /** Gradient method */
71
71
        virtual Matrix gradient(const NumericalPoint & in) const
72
 
          throw(InvalidArgumentException, InternalException);
 
72
          /* throw(InvalidArgumentException, InternalException) */;
73
73
 
74
74
        /** Accessor for input point dimension */
75
 
        virtual UnsignedLong getInputNumericalPointDimension() const
76
 
          throw(InternalException);
 
75
        virtual UnsignedLong getInputDimension() const
 
76
          /* throw(InternalException) */;
77
77
 
78
78
        /** Accessor for output point dimension */
79
 
        virtual UnsignedLong getOutputNumericalPointDimension() const
80
 
          throw(InternalException);
 
79
        virtual UnsignedLong getOutputDimension() const
 
80
          /* throw(InternalException) */;
81
81
 
82
82
        /** String converter */
83
83
        virtual String __repr__() const;
84
84
 
85
85
        /** Method save() stores the object through the StorageManager */
86
 
        virtual void save(const StorageManager::Advocate & adv) const;
 
86
        virtual void save(StorageManager::Advocate & adv) const;
87
87
 
88
88
        /** Method load() reloads the object from the StorageManager */
89
 
        virtual void load(const StorageManager::Advocate & adv);
 
89
        virtual void load(StorageManager::Advocate & adv);
90
90
 
91
91
 
92
92
      protected: