Skip to content

Commit

Permalink
use default values for new parameters for backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Nov 28, 2015
1 parent 6bcd23e commit f5ffd51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.hpp
Expand Up @@ -98,7 +98,7 @@ class NoRhoConvergenceError : public Error {
*/
class NonPerturbativeRunningError : public Error {
public:
explicit NonPerturbativeRunningError(double scale_, int max_step_row_, double value_)
explicit NonPerturbativeRunningError(double scale_, int max_step_row_ = -1, double value_ = 0)
: scale(scale_)
, value(value_)
, max_step_row(max_step_row_)
Expand Down

0 comments on commit f5ffd51

Please sign in to comment.