Skip to content

Commit

Permalink
Update solver_core.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ec147 authored Jul 25, 2024
1 parent e707023 commit 62ed872
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions c++/triqs_cthyb/solver_core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace triqs_cthyb {
mc_weight_t _average_sign; // average sign of the QMC
double _average_order; // average perturbation order
double _auto_corr_time; // Auto-correlation time
double _update_time; // average update time
double _update_time; // average update time
int _solve_status; // Status of the solve upon exit: 0 for clean termination, > 0 otherwise.

// Single-particle Green's function containers
Expand Down Expand Up @@ -196,7 +196,7 @@ namespace triqs_cthyb {
h5_write(grp, "average_sign", s._average_sign);
h5_write(grp, "average_order", s._average_order);
h5_write(grp, "auto_corr_time", s._auto_corr_time);
h5_write(grp, "update_time", s._update_time);
h5_write(grp, "update_time", s._update_time);
h5_write(grp, "solve_status", s._solve_status);
h5_write(grp, "Delta_infty_vec", s.Delta_infty_vec);
}
Expand All @@ -218,7 +218,7 @@ namespace triqs_cthyb {
h5::try_read(grp, "average_sign", s._average_sign);
h5::try_read(grp, "average_order", s._average_order);
h5::try_read(grp, "auto_corr_time", s._auto_corr_time);
h5::try_read(grp, "update_time", s._update_time);
h5::try_read(grp, "update_time", s._update_time);
h5::try_read(grp, "solve_status", s._solve_status);
h5::try_read(grp, "Delta_infty_vec", s.Delta_infty_vec);

Expand Down

0 comments on commit 62ed872

Please sign in to comment.