~ubuntu-branches/ubuntu/warty/petsc/warty

1 by Adam C. Powell, IV
Import upstream version 2.1.3
1
#if !defined(RUN_ALLOC_H)
2
#define RUN_ALLOC_H
3
4
#if defined(__cplusplus)
5
extern "C" {
6
#endif
7
8
void* ad_adic_deriv_init(int dsize, int bsize);
9
void ad_adic_deriv_final(void);
10
void* ad_adic_deriv_alloc(void);
11
void ad_adic_deriv_free(void*);
12
13
#if defined(__cplusplus)
14
}
15
#endif
16
17
#endif /*RUN_ALLOC_H*/
18
19