mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Updated ERT from https://github.com/Ensembles/ert/commits/master to version
4a78d88f1dc7bbc86f173c5adb825bbca29fa116 p4#: 21120
This commit is contained in:
@@ -2,23 +2,22 @@
|
||||
#ifndef __RML_ENKF_COMMON_H__
|
||||
#define __RML_ENKF_COMMON_H__
|
||||
|
||||
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <matrix.h>
|
||||
#include <rng.h>
|
||||
|
||||
#include <ert/util/matrix.h>
|
||||
#include <ert/util/rng.h>
|
||||
|
||||
|
||||
void rml_enkf_common_initA__( matrix_type * A ,
|
||||
matrix_type * S ,
|
||||
matrix_type * Cd ,
|
||||
matrix_type * E ,
|
||||
matrix_type * D ,
|
||||
double truncation,
|
||||
double lamda,
|
||||
matrix_type * Ud,
|
||||
double * Wd,
|
||||
matrix_type * VdT);
|
||||
matrix_type * S ,
|
||||
matrix_type * Cd ,
|
||||
matrix_type * E ,
|
||||
matrix_type * D ,
|
||||
double truncation,
|
||||
double lamda,
|
||||
matrix_type * Ud,
|
||||
double * Wd,
|
||||
matrix_type * VdT);
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
@@ -16,12 +16,15 @@ endif()
|
||||
set( CMAKE_SHARED_MODULE_PREFIX "" )
|
||||
add_library( std_enkf MODULE std_enkf.c )
|
||||
add_library( sqrt_enkf MODULE sqrt_enkf.c )
|
||||
add_library( rml_enkf MODULE rml_enkf.c rml_enkf_common.c )
|
||||
|
||||
#-----------------------------------------------------------------
|
||||
|
||||
install(TARGETS analysis DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
foreach(header ${header_files})
|
||||
install(FILES ../include/ert/analysis/${header} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/ert/analysis)
|
||||
endforeach()
|
||||
|
||||
if (INSTALL_ERT)
|
||||
install(TARGETS analysis DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
install(TARGETS rml_enkf DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
foreach(header ${header_files})
|
||||
install(FILES ../include/ert/analysis/${header} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/ert/analysis)
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user