Files
opm-core/mex_compute_geometry.m
Bård Skaflestad 0d0f8eb69c The geometry routines are presently in 'geometry.c', not
'mimetic_geometry.c'.  Reflect this in the build command.
2010-08-04 20:35:32 +00:00

9 lines
284 B
Matlab

function varargout = mex_compute_geometry(varargin)
buildmex -O -largeArrayDims ...
mex_compute_geometry.c geometry.c mrst_api.c ...
-lm
% Call MEX'ed edition.
[varargout{1:nargout}] = mex_compute_geometry(varargin{:});
end