Hotfix for issues with dsuperlu in regression test. (#631)

Commented out unnecessary memory deallocation check.
This commit is contained in:
Daniel Osei-Kuffuor 2022-05-15 21:42:28 -07:00 committed by GitHub
parent dfdd1cd12f
commit 63208e3e34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ HYPRE_Int hypre_SLUDistSetup( HYPRE_Solver *solver, hypre_ParCSRMatrix *A, HYPRE
hypre_MPI_Comm_rank(comm, &my_id);
/* destroy solver if already setup */
if (solver != NULL) { hypre_SLUDistDestroy(solver); }
// if (solver != NULL) { hypre_SLUDistDestroy(solver); }
/* allocate memory for new solver */
dslu_data = hypre_CTAlloc(hypre_DSLUData, 1, HYPRE_MEMORY_HOST);