From 28cedd7dd9ae4609778f4ffc8f5ceaf0aae438cc Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Tue, 20 Apr 1999 16:46:55 +0000 Subject: [PATCH] - Added 2 comments. --- .../Interval_arithmetic/include/CGAL/Arithmetic_filter.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter.h b/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter.h index 4166e89a3d5..0a6e3012094 100644 --- a/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter.h +++ b/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter.h @@ -41,6 +41,7 @@ CGAL_BEGIN_NAMESPACE // CT = construction type // ET = exact type (used for exact predicate evaluation) // (Interval_nt_advanced) = used for filtering. +// Cache_t = caching type (either Filter_Cache or No_Filter_Cache) // // 2 conversion functions must be provided: // - convert_to (CT) @@ -81,13 +82,15 @@ class Filtered_exact void update_cache() { compute_cache (_cache); } + // Private data members. + CT _value; Cache_t _cache; public: Filtered_exact () {} - Filtered_exact (const Fil & fil) + Filtered_exact (const Filtered_exact & fil) : _value(fil._value), _cache(fil._cache) { } template Filtered_exact (const NT & nt)