Skip to content

Commit

Permalink
derivatives expressions interface need update #4
Browse files Browse the repository at this point in the history
  • Loading branch information
prudhomm committed May 14, 2023
1 parent 2ff04d3 commit ec95581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/examples/04-myexpression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int main(int argc, char**argv )
#endif
// tag::grad[]
auto grad_g=grad<2>(g);
auto grad_f=grad(f);
auto grad_f=grad<2>(f);
Feel::cout << "grad(g)=" << grad_g << std::endl;
Feel::cout << "grad(f)=" << grad_f << std::endl;
// end::grad[]
Expand Down

0 comments on commit ec95581

Please sign in to comment.