This commit is contained in:
Marc Pouget 2007-02-16 17:17:33 +00:00
parent 30f202c81b
commit 7b912f885f
3 changed files with 8 additions and 5 deletions

View File

@ -20,6 +20,9 @@ This chapter describes the \cgal's package geared towards the
estimation of local differential quantities on sampled surfaces, given
either as a mesh or as point cloud.
Note that this package needs the third party libraries
\ccThirdPartyLapack\ and \ccThirdPartyBlas\ to be installed to compile
the example code.
%%%%%%%%%%%%%%%%%%%%%%%
\section{Introduction}

View File

@ -2,7 +2,7 @@
%\ccPkgHowToCiteCgal{}
\ccPkgSummary{This package enables the Computation of local
differential quantities of a surface from a point sample.}
%\ccPkgDependsOn{\ccRefPkg:}
\ccPkgDependsOn{Solvers as \ccThirdPartyLapack\ and \ccThirdPartyBlas.}
%\ccPkgIntroducedInCGAL{}
%\ccPkgLicense{\ccLicenseQPL}
\end{ccPkgDescription}

View File

@ -19,11 +19,11 @@
#define CGAL_LAPACK_H
extern "C" {
int dgelss(int *m, int *n, int *nrhs,
int 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);
int dgelss_(int *m, int *n, int *nrhs,
int 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);
@ -38,9 +38,9 @@ int dgelss(int *m, int *n, int *nrhs,
int *info)
{
#ifdef CGAL_USE_F2C
return dgelss_(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
return ::dgelss_(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
#else
return dgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
return ::dgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info);
#endif
}