Replace assert(false) with throw SimulationStoppingError(To be implemented.)

This commit is contained in:
Aik-Siong Koh
2025-09-09 16:39:39 -06:00
committed by Chris Hennes
parent bacb65f9c0
commit b9ba0976f2
65 changed files with 287 additions and 283 deletions

View File

@@ -78,7 +78,7 @@ void GESpMatParPvPrecise::doPivoting(size_t p)
void GESpMatParPvPrecise::preSolvewithsaveOriginal(SpMatDsptr spMat, FColDsptr fullCol, bool saveOriginal)
{
//assert(false);
//throw SimulationStoppingError("To be implemented.");
//"A conditioned copy of aMatrix is solved."
if (m != spMat->nrow() || n != spMat->ncol()) {
m = spMat->nrow();