Skip to content

Commit

Permalink
format2
Browse files Browse the repository at this point in the history
  • Loading branch information
juanlucasrey committed Nov 8, 2024
1 parent e2d7fe5 commit 3c79a7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ADOL-C/include/adolc/internal/adubfunc.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
friend ADOLC_DLL_EXPORT adub acosh ( const badouble& );
friend ADOLC_DLL_EXPORT adub atanh ( const badouble& );
friend ADOLC_DLL_EXPORT adub erf ( const badouble& );
friend ADOLC_DLL_EXPORT adub erfc ( const badouble& );
friend ADOLC_DLL_EXPORT adub erfc ( const badouble& );

friend ADOLC_DLL_EXPORT adub fabs ( const badouble& );
friend ADOLC_DLL_EXPORT adub ceil ( const badouble& );
Expand Down
2 changes: 1 addition & 1 deletion ADOL-C/include/adolc/internal/paramfunc.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
inline friend ADOLC_DLL_EXPORT adub acosh ( const pdouble& );
inline friend ADOLC_DLL_EXPORT adub atanh ( const pdouble& );
inline friend ADOLC_DLL_EXPORT adub erf ( const pdouble& );
inline friend ADOLC_DLL_EXPORT adub erfc ( const pdouble& );
inline friend ADOLC_DLL_EXPORT adub erfc ( const pdouble& );

inline friend ADOLC_DLL_EXPORT adub fabs ( const pdouble& );
inline friend ADOLC_DLL_EXPORT adub ceil ( const pdouble& );
Expand Down
2 changes: 1 addition & 1 deletion ADOL-C/include/adolc/param.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ inline adub asinh ( const pdouble& p) { return asinh(adub(p)); }
inline adub acosh ( const pdouble& p) { return acosh(adub(p)); }
inline adub atanh ( const pdouble& p) { return atanh(adub(p)); }
inline adub erf ( const pdouble& p) { return erf(adub(p)); }
inline adub erfc ( const pdouble& p) { return erfc(adub(p)); }
inline adub erfc ( const pdouble& p) { return erfc(adub(p)); }
inline adub fabs ( const pdouble& p) { return fabs(adub(p)); }
inline adub ceil ( const pdouble& p) { return ceil(adub(p)); }
inline adub floor ( const pdouble& p) { return floor(adub(p)); }
Expand Down

0 comments on commit 3c79a7e

Please sign in to comment.