rm double casts

This commit is contained in:
dwarning 2023-06-15 15:15:29 +02:00
parent a71abe9e9d
commit d8d01126bd
1 changed files with 5 additions and 3 deletions

View File

@ -32,7 +32,9 @@
* SMPprint
* SMPgetError
* SMPcProdDiag
*/
* LoadGmin
* SMPfindElt
*/
/*
* To replace SMP with Sparse, rename the file spSpice3.h to
@ -198,7 +200,7 @@ int *NumSwaps)
*NumSwaps = 0;
spSetComplex( Matrix );
return spOrderAndFactor( Matrix, NULL,
(spREAL)PivRel, (spREAL)PivTol, YES );
PivRel, PivTol, YES );
}
/*
@ -212,7 +214,7 @@ double PivTol, double PivRel, double Gmin)
spSetReal( Matrix );
LoadGmin( Matrix, Gmin );
return spOrderAndFactor( Matrix, NULL,
(spREAL)PivRel, (spREAL)PivTol, YES );
PivRel, PivTol, YES );
}
/*