easier reading of member variables

This commit is contained in:
Samuel Hornus 2011-05-06 17:06:55 +00:00
parent e47bbc2078
commit 37ff7093f6
1 changed files with 7 additions and 6 deletions

View File

@ -103,12 +103,13 @@ public:
protected: // DATA MEMBERS
Pure_complex_ds pcds_;
const Geom_traits kernel_;
Vertex_handle infinity_;
mutable Random rng_; // for stochastic walk in the locate() function
mutable std::vector<Oriented_side> orientations_;
Coaffine_orientation_d coaffine_orientation_;
Pure_complex_ds pcds_;
const Geom_traits kernel_;
Vertex_handle infinity_;
mutable std::vector<Oriented_side> orientations_;
Coaffine_orientation_d coaffine_orientation_;
// for stochastic walk in the locate() function:
mutable Random rng_;
#ifdef CGAL_PURE_COMPLEX_STATISTICS
mutable unsigned long walk_size_;
#endif