Skip to content
Snippets Groups Projects
Commit c86a94a3 authored by oliver.sander_at_tu-dresden.de's avatar oliver.sander_at_tu-dresden.de
Browse files

Add fabs(adouble) as a synonym for abs(adouble)

parent b5abd515
Branches
Tags
No related merge requests found
......@@ -61,6 +61,10 @@ namespace std
return abs_hack(a);
}
adouble fabs(adouble a) {
return abs_hack(a);
}
adouble log(adouble a) {
return log_hack(a);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment