mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-22 15:33:29 -06:00
4e814fb0a5
implementation of the 'ip_simple' mimetic inner product. Suggested by: jrn.
11 lines
295 B
C
11 lines
295 B
C
#ifndef MIMETIC_H_INCLUDED
|
|
#define MIMETIC_H_INCLUDED
|
|
|
|
void mim_ip_simple(MAT_SIZE_T nf, MAT_SIZE_T d, double v,
|
|
double *A, double *K, double *C, double *N,
|
|
double *Binv,
|
|
double *work, MAT_SIZE_T lwork);
|
|
|
|
|
|
#endif /* MIMETIC_H_INCLUDED */
|