Skip to content

Commit

Permalink
Merge pull request etmc#329 from kostrzewa/dfl_regressions
Browse files Browse the repository at this point in the history
invert_clover_eo: logic for RGMIXEDCG was lost during deflation merge
  • Loading branch information
urbach committed May 25, 2016
2 parents d9a2d4b + 6f826b1 commit c6c2a7d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions invert_clover_eo.c
Expand Up @@ -117,6 +117,11 @@ int invert_clover_eo(spinor * const Even_new, spinor * const Odd_new,
VOLUME/2, &Qsw_pm_psi, &Qsw_pm_psi_32);
Qm(Odd_new, Odd_new);
}
else if(solver_flag == RGMIXEDCG){
iter = rg_mixed_cg_her(Odd_new, g_spinor_field[DUM_DERI], solver_params, max_iter, precision, rel_prec,
VOLUME/2, &Qsw_pm_psi, &Qsw_pm_psi_32);
Qm(Odd_new, Odd_new);
}
else{
if(g_proc_id == 0) {printf("# This solver is not available for this operator. Exisiting!\n"); fflush(stdout);}
return 0;
Expand Down

0 comments on commit c6c2a7d

Please sign in to comment.