2009-11-20 15:36:32 +00:00
|
|
|
/*===========================================================================
|
2009-06-19 07:54:00 +00:00
|
|
|
//
|
|
|
|
|
// File: uniquepoints.h
|
|
|
|
|
//
|
|
|
|
|
// Created: Fri Jun 19 08:46:30 2009
|
|
|
|
|
//
|
|
|
|
|
// Author: Jostein R. Natvig <Jostein.R.Natvig@sintef.no>
|
|
|
|
|
//
|
|
|
|
|
// $Date$
|
|
|
|
|
//
|
|
|
|
|
// $Revision$
|
|
|
|
|
//
|
2009-11-20 15:36:32 +00:00
|
|
|
//==========================================================================*/
|
2009-06-12 15:42:32 +00:00
|
|
|
|
2009-06-19 07:54:00 +00:00
|
|
|
/*
|
2012-01-31 08:48:40 +00:00
|
|
|
Copyright 2009, 2010 SINTEF ICT, Applied Mathematics.
|
|
|
|
|
Copyright 2009, 2010 Statoil ASA.
|
2009-06-19 07:54:00 +00:00
|
|
|
|
2012-01-31 08:48:40 +00:00
|
|
|
This file is part of The Open Reservoir Simulator Project (OpenRS).
|
2009-06-19 07:54:00 +00:00
|
|
|
|
2012-01-31 08:48:40 +00:00
|
|
|
OpenRS is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
2009-06-19 07:54:00 +00:00
|
|
|
|
2012-01-31 08:48:40 +00:00
|
|
|
OpenRS is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
2009-06-19 07:54:00 +00:00
|
|
|
|
2012-01-31 08:48:40 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with OpenRS. If not, see <http://www.gnu.org/licenses/>.
|
2009-06-19 07:54:00 +00:00
|
|
|
*/
|
|
|
|
|
|
2012-01-31 08:48:40 +00:00
|
|
|
#ifndef OPM_UNIQUEPOINTS_HEADER
|
|
|
|
|
#define OPM_UNIQUEPOINTS_HEADER
|
2009-06-12 15:42:32 +00:00
|
|
|
|
2009-06-18 13:28:54 +00:00
|
|
|
int finduniquepoints(const struct grdecl *g, /* input */
|
2012-01-31 08:48:40 +00:00
|
|
|
int *p, /* for each z0 in zcorn, z0 = z[p0] */
|
|
|
|
|
double t, /* tolerance*/
|
|
|
|
|
struct processed_grid *out);
|
2009-06-11 07:33:50 +00:00
|
|
|
|
2012-01-31 08:48:40 +00:00
|
|
|
#endif /* OPM_UNIQUEPOINTS_HEADER */
|
2010-08-27 17:12:16 +00:00
|
|
|
|
|
|
|
|
/* Local Variables: */
|
|
|
|
|
/* c-basic-offset:4 */
|
|
|
|
|
/* End: */
|