Skip to content
Snippets Groups Projects
Commit f55502e2 authored by Evgueni Tcherniaev's avatar Evgueni Tcherniaev Committed by Vakhtang Tsulaia
Browse files

Temporary disable volume caching

parent ded9bf6d
No related branches found
No related tags found
1 merge request!353Draft: Temporary disable volume caching
Pipeline #9981335 failed
......@@ -83,12 +83,14 @@ class GeoShape : public RCBase
// Returns volume value
double getVolumeValue () const {
return m_shape_volume.load();
return -1.;
//return m_shape_volume.load();
}
// Sets volume value
void setVolumeValue (double value) const {
m_shape_volume = value;
if (value != 0.) return;
//m_shape_volume = value;
}
protected:
......@@ -101,7 +103,7 @@ class GeoShape : public RCBase
private:
// Cached volume
mutable std::atomic<double> m_shape_volume{-1.};
//mutable std::atomic<double> m_shape_volume{-1.};
};
#endif
......@@ -16,6 +16,8 @@ GeoShapeSubtraction::GeoShapeSubtraction (const GeoShape* A, const GeoShape* B):
m_opA {A}, m_opB {B} {}
double GeoShapeSubtraction::volume (int npoints) const {
if (npoints >= 0) return GeoShape::volume(npoints);
double vol = getVolumeValue();
if (vol < 0)
{
......
......@@ -17,6 +17,8 @@ GeoShapeUnion::GeoShapeUnion (const GeoShape* A, const GeoShape* B):
double GeoShapeUnion::volume (int npoints) const
{
if (npoints >= 0) return GeoShape::volume(npoints);
double vol = getVolumeValue();
if (vol < 0)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment