//------------------------------------------------------------------------------ // UMFPACK/Source/umfpack_save_numeric: save a Numeric object to a file //------------------------------------------------------------------------------ // UMFPACK, Copyright (c) 2005-2023, Timothy A. Davis, All Rights Reserved. // SPDX-License-Identifier: GPL-2.0+ //------------------------------------------------------------------------------ /* User-callable. Saves a Numeric object to a file. It can later be read back in via a call to umfpack_*_load_numeric. */ #include "umf_internal.h" #include "umf_valid_numeric.h" #define WRITE(object,type,n) \ { \ ASSERT (object != (type *) NULL) ; \ if (fwrite (object, sizeof (type), n, f) != (size_t) n) \ { \ fclose (f) ; \ return (UMFPACK_ERROR_file_IO) ; \ } \ fflush (f) ; \ } /* ========================================================================== */ /* === UMFPACK_save_numeric ================================================= */ /* ========================================================================== */ int UMFPACK_save_numeric ( void *NumericHandle, char *user_filename ) { NumericType *Numeric ; char *filename ; FILE *f ; /* get the Numeric object */ Numeric = (NumericType *) NumericHandle ; /* make sure the Numeric object is valid */ if (!UMF_valid_numeric (Numeric)) { return (UMFPACK_ERROR_invalid_Numeric_object) ; } /* get the filename, or use the default name if filename is NULL */ if (user_filename == (char *) NULL) { filename = "numeric.umf" ; } else { filename = user_filename ; } f = fopen (filename, "wb") ; if (!f) { return (UMFPACK_ERROR_file_IO) ; } /* write the Numeric object to the file, in binary */ WRITE (Numeric, NumericType, 1) ; WRITE (Numeric->D, Entry, MIN (Numeric->n_row, Numeric->n_col)+1) ; WRITE (Numeric->Rperm, Int, Numeric->n_row+1) ; WRITE (Numeric->Cperm, Int, Numeric->n_col+1) ; WRITE (Numeric->Lpos, Int, Numeric->npiv+1) ; WRITE (Numeric->Lilen, Int, Numeric->npiv+1) ; WRITE (Numeric->Lip, Int, Numeric->npiv+1) ; WRITE (Numeric->Upos, Int, Numeric->npiv+1) ; WRITE (Numeric->Uilen, Int, Numeric->npiv+1) ; WRITE (Numeric->Uip, Int, Numeric->npiv+1) ; if (Numeric->scale != UMFPACK_SCALE_NONE) { WRITE (Numeric->Rs, double, Numeric->n_row) ; } if (Numeric->ulen > 0) { WRITE (Numeric->Upattern, Int, Numeric->ulen+1) ; } /* It is possible that some parts of Numeric->Memory are unitialized and unused; this is OK, but it can generate a valgrind warning. */ WRITE (Numeric->Memory, Unit, Numeric->size) ; /* close the file */ fclose (f) ; return (UMFPACK_OK) ; }