Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
fbischoff committed Oct 28, 2023
1 parent ed21aa1 commit 349d21c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/examples/heat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ int main(int argc, char** argv) {
expnt[0] = 1.0/(4.0*c*tstep);
coeff[0] = pow(4.0*constants::pi*c*tstep,-1.5);

operatorT G(world, coeff, expnt);
double lo_dummy=1.e-4;
double thresh_dummy=1.e-6;
operatorT G(world, coeff, expnt, lo_dummy, thresh_dummy);

functionT ut = G(u0);

Expand Down

0 comments on commit 349d21c

Please sign in to comment.