@@ -77,7 +77,6 @@ int main(int argc, char **argv) {
7777 /// Create rbf matrix folder
7878 char makedirMString [32 ];
7979 sprintf (makedirMString , "rbfCoarseMatrix%d" , mui_ranks );
80- mkdir (makedirMString , 0777 );
8180
8281 /// Define the name of MUI domain
8382 char * domain = (char * ) malloc (strlen ("coarseDomain" ) + 1 );
@@ -124,7 +123,7 @@ int main(int argc, char **argv) {
124123 int conservative = 1 ;
125124 double cutoff = 1e-9 ;
126125 int smoothFunc = 0 ;
127- int writeMatrix = 1 ;
126+ int generateMatrix = 1 ;
128127 double cgSolveTol = 1e-6 ;
129128 int cgMaxIter = 500 ;
130129 int preconditioner = 1 ;
@@ -248,7 +247,7 @@ int main(int argc, char **argv) {
248247
249248 /// Define spatial and temporal samplers
250249 mui_sampler_rbf_2d * spatial_sampler2d = mui_create_sampler_rbf_2d (rSampler , point2d , point_count , basisFunc , conservative ,
251- smoothFunc , writeMatrix , fileAddress , cutoff , cgSolveTol , cgMaxIter , pouSize , preconditioner , MUI_COMM_WORLD );
250+ smoothFunc , generateMatrix , fileAddress , cutoff , cgSolveTol , cgMaxIter , pouSize , preconditioner , MUI_COMM_WORLD );
252251 mui_temporal_sampler_exact_2d * temporal_sampler2d = mui_create_temporal_sampler_exact_2d (8e-1 );
253252
254253 /// Commit ZERO step of MUI
0 commit comments