/usr/include/CGAL/Lapack_svd.h is in libcgal-dev 4.11-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | // Copyright (c) 2007 INRIA Sophia-Antipolis (France), INRIA Lorraine LORIA.
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 3 of the License,
// or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL$
// $Id$
//
// Author(s) : Marc Pouget and Frédéric Cazals
#ifndef CGAL_LAPACK_H
#define CGAL_LAPACK_H
#include <cstdlib>
#include <CGAL/auto_link/LAPACK.h>
#include <CGAL/assertions.h>
extern "C" {
// taken from acml.h
void dgelss(int m, int n, int nrhs,
double *a, int lda, double *b, int ldb, double *sing,
double rcond, int *irank, int *info);
void dgelss_(int *m, int *n, int *nrhs,
double *a, int *lda, double *b, int *ldb, double *
s, double *rcond, int *rank, double *work, int *lwork,
int *info);
}
namespace CGAL { namespace LAPACK {
inline
void dgelss(int *m, int *n, int *nrhs,
double *a, int *lda, double *b, int *ldb, double *
s, double *rcond, int *rank, double *work, int *lwork,
int *info)
{
#ifdef CGAL_USE_F2C
::dgelss_(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
#else
::dgelss(*m, *n, *nrhs, a, *lda, b, *ldb, s, *rcond, rank, info);
#endif
}
} }
namespace CGAL {
////////////////////////class Lapack_vector/////////////////////
class Lapack_vector{
typedef double FT;
protected:
FT* m_vector;
size_t nb_elts;
public:
// constructor
// initializes all the elements of the vector to zero.
Lapack_vector(size_t n) {
m_vector = (FT*) std::calloc (n, sizeof(FT));
nb_elts = n;
}
~Lapack_vector() {
free(m_vector);
}
size_t size() {return nb_elts;}
//data access
const FT* vector() const { return m_vector;}
FT* vector() { return m_vector; }
FT operator()(size_t i) {return m_vector[i];}
void set(size_t i, const FT value) { m_vector[i] = value; }
private:
/// Copy constructor and operator =() are not implemented.
Lapack_vector(const Lapack_vector& toCopy);
Lapack_vector& operator =(const Lapack_vector& toCopy);
};
////////////////////////class Lapack_matrix/////////////////////
//in clapack, matrices are one-dimensional arrays and elements are
//column-major ordered. This class is a wrapper defining set and get
//in the usual way with line and column indices.
class Lapack_matrix{
typedef double FT;
protected:
FT* m_matrix;
size_t nb_rows;
size_t nb_columns;
public:
// constructor
// initializes all the elements of the matrix to zero.
Lapack_matrix(size_t n1, size_t n2) {
m_matrix = (FT*) std::calloc (n1*n2, sizeof(FT));
nb_rows = n1;
nb_columns = n2;
}
~Lapack_matrix() {
free(m_matrix);
}
size_t number_of_rows() {return nb_rows;}
size_t number_of_columns() {return nb_columns;}
//access
const FT* matrix() const { return m_matrix; }
FT* matrix() { return m_matrix; }
void set(size_t i, size_t j, const FT value) { m_matrix[j*nb_rows+i] = value; }
FT operator()(size_t i, size_t j) { return m_matrix[j*nb_rows+i]; }
private:
/// Copy constructor and operator =() are not implemented.
Lapack_matrix(const Lapack_matrix& toCopy);
Lapack_matrix& operator =(const Lapack_matrix& toCopy);
};
////////////////////////class Lapack_svd/////////////////////
class Lapack_svd{
public:
typedef double FT;
typedef Lapack_vector Vector;
typedef Lapack_matrix Matrix;
//solve MX=B using SVD and return the condition number of M
//The solution is stored in B
static
FT solve(Matrix& M, Vector& B);
};
inline
Lapack_svd::FT Lapack_svd::solve(Matrix& M, Vector& B)
{
int m = static_cast<int>(M.number_of_rows()),
n = static_cast<int>(M.number_of_columns()),
nrhs = 1,
lda = m,
ldb = m,
rank,
lwork = 5*m,
info;
//c style
FT* sing_values = (FT*) std::malloc(n*sizeof(FT));
FT* work = (FT*) std::malloc(lwork*sizeof(FT));
FT rcond = -1;
LAPACK::dgelss(&m, &n, &nrhs, M.matrix(), &lda, B.vector(), &ldb, sing_values,
&rcond, &rank, work, &lwork, &info);
CGAL_assertion(info==0);
FT cond_nb = sing_values[0]/sing_values[n-1];
//clean up
free(sing_values);
free(work);
return cond_nb;
}
} // namespace CGAL
#endif // CGAL_LAPACK_H
|