From 0d0f8eb69ce05d8ac813b13f68cef2996b353ea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Wed, 4 Aug 2010 20:35:32 +0000 Subject: [PATCH] The geometry routines are presently in 'geometry.c', not 'mimetic_geometry.c'. Reflect this in the build command. --- mex_compute_geometry.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mex_compute_geometry.m b/mex_compute_geometry.m index cb842132..833ffb84 100644 --- a/mex_compute_geometry.m +++ b/mex_compute_geometry.m @@ -1,7 +1,7 @@ function varargout = mex_compute_geometry(varargin) - buildmex -O -largeArrayDims -lm ... - mex_compute_geometry.c mimetic_geometry.c mrst_api.c - + buildmex -O -largeArrayDims ... + mex_compute_geometry.c geometry.c mrst_api.c ... + -lm % Call MEX'ed edition. [varargout{1:nargout}] = mex_compute_geometry(varargin{:});