mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
ERT 80650d05d49b419ec74ba316312313dfc6ba0875 opm-common e7db252f3e310a04718f315e6cdb9d6c428c5762 opm-parser 817722b99baa62cc63a5f859cc90b951f0b0636e
16 lines
498 B
C
16 lines
498 B
C
#ifndef ERT_RML_ENKF_COMMON_H
|
|
#define ERT_RML_ENKF_COMMON_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <ert/util/matrix.h>
|
|
#include <ert/util/rng.h>
|
|
#include <ert/util/bool_vector.h>
|
|
|
|
|
|
void rml_enkf_common_store_state( matrix_type * state , const matrix_type * A , const bool_vector_type * ens_mask );
|
|
void rml_enkf_common_recover_state( const matrix_type * state , matrix_type * A , const bool_vector_type * ens_mask );
|
|
void rml_enkf_common_scaleA(matrix_type *A , const double * Csc, bool invert );
|
|
|
|
#endif
|