Amesos Package Browser (Single Doxygen Collection)  Development
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Macros | Functions
amesos_cholmod_rcond.c File Reference
#include "amesos_cholmod_internal.h"
#include "amesos_cholmod_cholesky.h"
Include dependency graph for amesos_cholmod_rcond.c:

Go to the source code of this file.

Macros

#define FIRST_LMINMAX(Ljj, lmin, lmax)
 
#define LMINMAX(Ljj, lmin, lmax)
 

Functions

double CHOLMOD (rcond)
 

Macro Definition Documentation

#define FIRST_LMINMAX (   Ljj,
  lmin,
  lmax 
)
Value:
{ \
double ljj = Ljj ; \
if (IS_NAN (ljj)) \
{ \
return (0) ; \
} \
lmin = ljj ; \
lmax = ljj ; \
}
#define IS_NAN(x)

Definition at line 36 of file amesos_cholmod_rcond.c.

#define LMINMAX (   Ljj,
  lmin,
  lmax 
)
Value:
{ \
double ljj = Ljj ; \
if (IS_NAN (ljj)) \
{ \
return (0) ; \
} \
if (ljj < lmin) \
{ \
lmin = ljj ; \
} \
else if (ljj > lmax) \
{ \
lmax = ljj ; \
} \
}
#define IS_NAN(x)

Definition at line 47 of file amesos_cholmod_rcond.c.

Function Documentation

double CHOLMOD ( rcond  )

Definition at line 68 of file amesos_cholmod_rcond.c.