Skip to content

Commit 527f13c

Browse files
committed
just typos
1 parent 8b03779 commit 527f13c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

DDalphaAMG_interface.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ static int MG_mms_solve_nd( spinor **const up_new, spinor **const dn_new,
917917
}
918918

919919
// Checking if the operator is in the list and compatible with N
920-
if ( f == Qtm_tau1_ndpsi_add_Ishift || // Gamma5 Dh tau1 - Schur complement with csw = 0 and plus shift
920+
if ( f == Qtm_tau1_ndpsi_add_Ishift || // Gamma5 Dh tau1 - Schur complement with csw = 0 and plus shift
921921
f == Qtm_tau1_ndpsi_sub_Ishift || // Gamma5 Dh tau1 - Schur complement with csw = 0 and minus shift
922922
f == Qsw_tau1_ndpsi_add_Ishift || // Gamma5 Dh tau1 - Schur complement with plus shift
923923
f == Qsw_tau1_ndpsi_sub_Ishift || // Gamma5 Dh tau1 - Schur complement with minus shift
@@ -933,7 +933,7 @@ static int MG_mms_solve_nd( spinor **const up_new, spinor **const dn_new,
933933
N==VOLUME?"":"Qsw_pm_ndpsi_shift");
934934

935935
// Setting mubar, epsbar and shifts
936-
if ( f == Qtm_tau1_ndpsi_add_Ishift || // Gamma5 Dh tau1 - Schur complement with csw = 0 and plus shift
936+
if ( f == Qtm_tau1_ndpsi_add_Ishift || // Gamma5 Dh tau1 - Schur complement with csw = 0 and plus shift
937937
f == Qsw_tau1_ndpsi_add_Ishift || // Gamma5 Dh tau1 - Schur complement with plus shift
938938
f == Qtm_pm_ndpsi_shift || // (Gamma5 Dh tau1)^2 - Schur complement squared with csw = 0 and shift
939939
f == Qsw_pm_ndpsi_shift ) { // (Gamma5 Dh tau1)^2 - Schur complement squared with shift

solver/monomial_solve.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -307,15 +307,15 @@ int solve_mms_tm(spinor ** const P, spinor * const Q,
307307
for(int i = solver_params->no_shifts-1; i>=0; i--){
308308
// preparing initial guess
309309
init_guess_mms(P, Q, i, solver_params);
310-
solver_params.use_initial_guess = 1;
310+
solver_params->use_initial_guess = 1;
311311

312312
// inverting
313313
g_mu3 = solver_params->shifts[i];
314314
iter_local = rg_mixed_cg_her( P[i], Q, temp_params, solver_params->max_iter,
315315
solver_params->squared_solver_prec, solver_params->rel_prec, solver_params->sdim,
316316
solver_params->M_psi, f32);
317317
g_mu3 = _default_g_mu3;
318-
solver_params.use_initial_guess = 0;
318+
solver_params->use_initial_guess = 0;
319319
if(iter_local == -1){
320320
return(-1);
321321
} else {

0 commit comments

Comments
 (0)