Skip to content

Commit

Permalink
Merge branch 'main' into pull_request_NR
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRiel authored Jun 22, 2023
2 parents f7e2cc4 + 2d994fb commit 7713718
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/PGE_function.c
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,7 @@ global_variable PGE_solver( bulk_info z_b,
// Solution (with transpose!)
char T = 'T';
dgetrs( &T,

&nEntry,
&nrhs,
gv.A_PGE,
Expand Down
2 changes: 1 addition & 1 deletion src/initialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ global_variable global_variable_alloc( bulk_info *z_b ){
gv.EM_database = 2; /** 0, metapelite; 1 metabasite; 2 igneous */
gv.n_points = 1;
gv.solver = 1; /* 1 = PGE+Legacy, 2 = Legacy only */
gv.verbose = 0;
gv.verbose = 0;
gv.output_matlab = 0;
gv.test = -1;

Expand Down
3 changes: 2 additions & 1 deletion src/simplex_levelling.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ void update_global_gamma_LU( bulk_info z_b,
dgetrf(&d->n_Ox, &d->n_Ox, d->Alu, &d->n_Ox, ipiv, &info);

char T = 'T';

dgetrs( &T,
&d->n_Ox,
&nrhs,
Expand Down Expand Up @@ -1619,4 +1620,4 @@ global_variable Levelling( bulk_info z_b,
// }

return gv;
};
};

0 comments on commit 7713718

Please sign in to comment.