mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-22 15:33:29 -06:00
4a5610ca80
partition vectors) to create block-to-cell mappings.
31 lines
675 B
C
31 lines
675 B
C
#ifndef PARTITION_H_INCLUDED
|
|
#define PARTITION_H_INCLUDED
|
|
|
|
int
|
|
partition_unif_idx(int ndims, int nc,
|
|
const int *fine_d,
|
|
const int *coarse_d,
|
|
const int *idx,
|
|
int *p);
|
|
|
|
int
|
|
partition_compress(int n, int *p);
|
|
|
|
|
|
int
|
|
partition_allocate_inverse(int nc, int max_blk,
|
|
int **pi, int **inverse);
|
|
|
|
void
|
|
partition_deallocate_inverse(int *pi, int *inverse);
|
|
|
|
void
|
|
partition_invert(int nc, const int *p,
|
|
int *pi, int *inverse);
|
|
|
|
void
|
|
partition_localidx(int nblk, const int *pi, const int *inverse,
|
|
int *localidx);
|
|
|
|
#endif /* PARTITION_H_INLCUDED */
|