Fix a build breakage

Change-Id: I57591bc42d53f9856b49f7a16732a2a1e259dc67
This commit is contained in:
Sameer Agarwal
2022-05-19 11:19:52 -07:00
parent 41c5fb1e80
commit aa62dd86a8
2 changed files with 3 additions and 5 deletions
+2 -3
View File
@@ -183,14 +183,13 @@ cholmod_factor* SuiteSparse::AnalyzeCholesky(cholmod_sparse* A,
StringPrintf("cholmod_analyze failed. error code: %d", cc_.status);
return nullptr;
}
CHECK(factor != nullptr);
CHECK(factor != nullptr);
if (VLOG_IS_ON(2)) {
cholmod_print_common(const_cast<char*>("Symbolic Analysis"), &cc_);
}
}
return factor;
return factor;
}
cholmod_factor* SuiteSparse::AnalyzeCholeskyWithGivenOrdering(