~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to extern/Eigen3/Eigen/src/QR/HouseholderQR.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
// Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
6
6
// Copyright (C) 2010 Vincent Lejeune
7
7
//
8
 
// Eigen is free software; you can redistribute it and/or
9
 
// modify it under the terms of the GNU Lesser General Public
10
 
// License as published by the Free Software Foundation; either
11
 
// version 3 of the License, or (at your option) any later version.
12
 
//
13
 
// Alternatively, you can redistribute it and/or
14
 
// modify it under the terms of the GNU General Public License as
15
 
// published by the Free Software Foundation; either version 2 of
16
 
// the License, or (at your option) any later version.
17
 
//
18
 
// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
19
 
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20
 
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
21
 
// GNU General Public License for more details.
22
 
//
23
 
// You should have received a copy of the GNU Lesser General Public
24
 
// License and a copy of the GNU General Public License along with
25
 
// Eigen. If not, see <http://www.gnu.org/licenses/>.
 
8
// This Source Code Form is subject to the terms of the Mozilla
 
9
// Public License v. 2.0. If a copy of the MPL was not distributed
 
10
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
26
11
 
27
12
#ifndef EIGEN_QR_H
28
13
#define EIGEN_QR_H
29
14
 
 
15
namespace Eigen { 
 
16
 
30
17
/** \ingroup QR_Module
31
18
  *
32
19
  *
351
338
  return HouseholderQR<PlainObject>(eval());
352
339
}
353
340
 
 
341
} // end namespace Eigen
354
342
 
355
343
#endif // EIGEN_QR_H