https://gitlab.opengeosys.org/ogs/ogs.git
Revision 2d89680bdeb9fc9568785b0d45b2c2c775ea9033 authored by Thomas Fischer on 15 October 2021, 06:37:47 UTC, committed by Dmitri Naumov on 15 October 2021, 19:53:24 UTC
Pointer to vector of Point's wasn't cleaned up properly.

In rotatePolygonToXY a pointer to the vector of
polygon points was created. The rotated polygon is
on this vector. When the polygon is returned from
the function it isn't possible to cleanup the vector
properly. So the creation of the polygon is move to
the function markNodesOutSideOfPolygon.
1 parent 2c8f206
Raw File
Tip revision: 2d89680bdeb9fc9568785b0d45b2c2c775ea9033 authored by Thomas Fischer on 15 October 2021, 06:37:47 UTC
[GL/MGTL] Cleanup Pointer to vector of Point's.
Tip revision: 2d89680
README.md
OpenGeoSys 6
============

[![Modified BSD License](http://img.shields.io/badge/license-BSD-blue.svg?style=flat-square)](https://gitlab.opengeosys.org/ogs/ogs/-/blob/master/LICENSE.txt)
[![DOI](https://zenodo.org/badge/1701384.svg)](https://zenodo.org/badge/latestdoi/1701384)

[OpenGeoSys][ogs] (OGS) is a scientific open source project for the development of
numerical methods for the simulation of thermo-hydro-mechanical-chemical
(THMC) processes in porous and fractured media. OGS is implemented in C++, it
is object-oriented with an focus on the numerical solution of coupled multi-field
problems (multi-physics). Parallel versions of OGS are available relying on
both MPI and OpenMP concepts. Application areas of OGS are currently CO2
sequestration, geothermal energy, water resources management, hydrology and
waste deposition. OGS is comprised of the THMC-simulator (simply referred to as
*OGS*) and a visualization tool (*Data Explorer*). OGS is developed by the
[OpenGeoSys Community][ogs].

## Software development ##

- Good starting point for users as well as for developers is the [documentation][documentation]
- Check your code against our [styleguide](http://ufz.github.io/styleguide/cppguide.xml)
- Have a look at the [source code documentation for the current master-branch build][docs-master] or [for the latest release][docs-release]

## License ##

OpenGeoSys is distributed under the Modified BSD License. See the
[LICENSE.txt][license-source] for the license text.

[ogs]: https://www.opengeosys.org
[documentation]: https://www.opengeosys.org/docs/
[docs-master]: https://doxygen.opengeosys.org/
[docs-release]: https://doxygen.opengeosys.org/v6.4.1
[license-source]: https://github.com/ufz/ogs/blob/master/LICENSE.txt
back to top