Browse Source

sparse/*.c, drop unnecessary (spREAL) cast

pre-master-46
rlar 13 years ago
parent
commit
ec8a3b79a2
  1. 4
      src/maths/sparse/spsmp.c

4
src/maths/sparse/spsmp.c

@ -184,7 +184,7 @@ SMPcReorder(SMPmatrix *Matrix, double PivTol, double PivRel,
*NumSwaps = 1;
spSetComplex( Matrix );
return spOrderAndFactor( Matrix, NULL,
(spREAL)PivRel, (spREAL)PivTol, YES );
PivRel, PivTol, YES );
}
/*
@ -196,7 +196,7 @@ SMPreorder(SMPmatrix *Matrix, double PivTol, double PivRel, double Gmin)
spSetReal( Matrix );
LoadGmin( Matrix, Gmin );
return spOrderAndFactor( Matrix, NULL,
(spREAL)PivRel, (spREAL)PivTol, YES );
PivRel, PivTol, YES );
}
/*

Loading…
Cancel
Save