Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSiebert1 committed Dec 19, 2024
1 parent 7508dca commit e049467
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ADOL-C/include/adolc/drivers/drivers.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ ADOLC_DLL_EXPORT fint large_jacobian_(fint *, fint *, fint *, fint *, fdouble *,
/*--------------------------------------------------------------------------*/
/* vector_jacobian */
/* vec_jac(tag, m, n, repeat, x[n], u[m], v[n]) */
ADOLC_DLL_EXPORT int vec_jac(short, int, int, int, const double *, const double *,
double *);
ADOLC_DLL_EXPORT int vec_jac(short, int, int, int, const double *,
const double *, double *);
ADOLC_DLL_EXPORT fint vec_jac_(fint *, fint *, fint *, fint *, fdouble *,
const fdouble *, fdouble *);

Expand Down
3 changes: 2 additions & 1 deletion ADOL-C/src/interfacesf.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ fint hos_ti_reverse_(fint *ftag, fint *fm, fint *fn, fint *fd, fdouble *fu,
}

/*--------------------------------------------------------------------------*/
fint fos_reverse_(fint *ftag, fint *fm, fint *fn, const fdouble *fu, fdouble *fz) {
fint fos_reverse_(fint *ftag, fint *fm, fint *fn, const fdouble *fu,
fdouble *fz) {
int rc = -1;
int tag = *ftag, m = *fm, n = *fn;
double *u = myalloc1(m);
Expand Down

0 comments on commit e049467

Please sign in to comment.