#ifndef EXPDE #define EXPDE 1 // ############################################################################ // // create mz_kpp_module // // create code from .f90 sources created by KPP to be used in MESSy // // COPYRIGHT Klaus Ketelsen and MPI-CH April 2007 // // ############################################################################ // // // Former revisions: // ----------------------- // Deleted $Id since document_changes does not work for C and C++ (15.03.2019, forkel) // // initial version (Nov. 2016, ketelsen) #include #include #include #include #include "fortran_file.h" #include "program_line.h" class expand_decomp { int NVAR; vector LU_IROW; vector LU_ICOL; vector LU_CROW; vector LU_DIAG; public: void create_sparse_info (vector & include_list, string module_name); void create_routine (vector & routine_list); }; #endif