1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
|
// Copyright (c) 2010-2011 CNRS and LIRIS' Establishments (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1.1/Combinatorial_map/include/CGAL/Combinatorial_map_iterators_base.h $
// $Id: include/CGAL/Combinatorial_map_iterators_base.h 08b27d3db14 $
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Guillaume Damiand <guillaume.damiand@liris.cnrs.fr>
//
#ifndef CGAL_COMBINATORIAL_MAP_ITERATORS_BASE_HH
#define CGAL_COMBINATORIAL_MAP_ITERATORS_BASE_HH 1
#include <CGAL/disable_warnings.h>
#include <CGAL/Compact_container.h>
#include <CGAL/Compact_container_with_index.h>
#include <queue>
#include <type_traits>
namespace CGAL {
/** @file Combinatorial_map_iterators_base.h
* Basic classes that serve as tools for definition of iterators.
There are 3 classes:
* - CMap_dart_iterator<Map,Const> is the basic generic class defining
* what is an iterator on darts.
* - CMap_extend_iterator<Map,Ite,Bi> to extend the given iterator by adding
* the involution Bi.
* - CMap_non_basic_iterator<Map_,Ite> to transform the basic iterator Ite
* into the corresponding non basic iterator.
* - CMap_range<Map,It,ConstIt,BasicIt> generic definition of a range
* given an iterator and its const version
* - CMap_const_range<Map,It,ConstIt,BasicIt> generic definition of a const
* range given an iterator and its const version
*/
//****************************************************************************
/// OperationState: type to keep the last operation used by the previous ++.
typedef char OperationState;
/// Enum of all the possible operations used by the ++ operator.
enum
{
OP_NONE = -1, ///< Beginning of the iterator (there is not yet operator++).
OP_BETAI, ///< Previous op was the first beta.
OP_BETAI_INV, ///< Previous op was the inverse of the first beta.
OP_BETAJ, ///< Previous op was the second beta.
OP_BETAK, ///< Previous op was the third beta.
OP_BETA0I, ///< Previous op was beta0 o the first beta.
OP_BETAI1, ///< Previous op was the first beta o beta1.
OP_BETAIJ, ///< Previous op was the composition of two beta.
OP_BETAJI, ///< Previous op was the composition of two beta.
OP_BETA21, ///< Previous op was beta21.
OP_JUMP, ///< Previous op was a jump .
OP_POP, ///< Previous op pop a dart from a stack or a queue.
OP_END ///< Previous op go out of the iterator.
};
//****************************************************************************
/** Generic class of iterator onto darts.
* Class CMap_dart_iterator is a generic iterator. All the combinatorial
* map iterator classes inherit from this class (or one of its subclass).
*/
template < typename Map_,bool Const=false, typename UseIndex=typename Map_::Use_index >
class CMap_dart_iterator;
template < typename Map_,bool Const>
class CMap_dart_iterator<Map_, Const, Tag_false>: public std::conditional_t< Const,
typename Map_::Dart_container::const_iterator,
typename Map_::Dart_container::iterator>
//public internal::CC_iterator<typename Map_::Dart_container,Const>
{
public:
typedef CMap_dart_iterator<Map_,Const> Self;
typedef std::conditional_t< Const,
typename Map_::Dart_container::const_iterator,
typename Map_::Dart_container::iterator> Base;
// typedef internal::CC_iterator<typename Map_::Dart_container,Const> Base;
typedef std::conditional_t< Const,
typename Map_::Dart_const_descriptor,
typename Map_::Dart_descriptor>
Dart_descriptor;
typedef std::conditional_t< Const, const Map_, Map_> Map;
typedef std::input_iterator_tag iterator_category;
typedef typename Base::value_type value_type;
typedef typename Base::difference_type difference_type;
typedef typename Base::pointer pointer;
typedef typename Base::reference reference;
/// true iff this iterator is basic
typedef Tag_true Basic_iterator;
typedef typename Map::size_type size_type;
public:
/// Main constructor.
CMap_dart_iterator(Map& amap, Dart_descriptor adart):
Base(adart),
mmap(&amap),
mfirst_dart(adart),
mprev_op(OP_NONE)
{}
/// == operator.
bool operator==(const Self& aiterator) const
{
return ( ((*this==mmap->null_descriptor) && (aiterator==mmap->null_descriptor)) ||
(mfirst_dart == aiterator.mfirst_dart &&
static_cast<const Base&>(*this)==
static_cast<const Base&>(aiterator)) );
}
/// != operator.
bool operator!=(const Self& aiterator) const
{ return !operator==(aiterator); }
/// Accessor to the initial dart of the iterator.
Dart_descriptor get_first_dart() const { return mfirst_dart; }
/// Accessor to the combinatorial map.
Map* get_combinatorial_map() const { return mmap; }
/// Rewind of the iterator to its beginning.
void rewind()
{ set_current_dart(mfirst_dart); mprev_op = OP_NONE; }
/// Test if the iterator is at its end.
bool cont() const
{ return static_cast<const Base&>(*this)!=mmap->null_descriptor; }
/// Get the previous operation used for the last ++.
OperationState prev_operation() const { return mprev_op; }
protected:
/// Set the current dart to a given dart
void set_current_dart(Dart_descriptor adart)
{ Base::operator=(adart); }
private:
/// operator -- in private to invalidate the base operator.
Self& operator--()
{ return *this; }
/// operator -- in private to invalidate the base operator.
Self operator--(int)
{ return *this; }
protected:
/// test if adart->beta(ai) exists and is not marked for amark
bool is_unmarked(Dart_descriptor adart, unsigned int ai, size_type amark) const
{ return
!mmap->is_marked(mmap->beta(adart,ai), amark);
}
/// test if adart->beta(ai)->beta(aj) exists
bool exist_betaij(Dart_descriptor adart, unsigned int ai, unsigned int aj) const
{ return !mmap->is_free(adart, ai) && !mmap->is_free(mmap->beta(adart, ai), aj); }
/// test if adart->beta(ai)->beta(aj) exists and is not marked for amark
bool is_unmarked2(Dart_descriptor adart, unsigned int ai, unsigned int aj,
size_type amark) const
{ return
!mmap->is_marked(mmap->beta(adart, ai, aj), amark);
}
protected:
/// The map containing the darts to iterate on.
Map* mmap;
/// The initial dart of the iterator.
Dart_descriptor mfirst_dart;
/// The last operation used for the ++ operator.
OperationState mprev_op;
};
template < typename Map_,bool Const >
class CMap_dart_iterator<Map_, Const, Tag_true>:
/*public std::conditional_t< Const,
typename Map_::Dart_container::const_iterator,
typename Map_::Dart_container::iterator>*/
public internal::CC_iterator_with_index<typename Map_::Dart_container,Const>
{
public:
typedef CMap_dart_iterator<Map_,Const> Self;
/*typedef std::conditional_t< Const,
typename Map_::Dart_container::const_iterator,
typename Map_::Dart_container::iterator> Base;*/
typedef internal::CC_iterator_with_index<typename Map_::Dart_container,Const> Base;
typedef std::conditional_t< Const,
typename Map_::Dart_const_descriptor,
typename Map_::Dart_descriptor>
Dart_descriptor;
typedef std::conditional_t< Const, const Map_, Map_> Map;
typedef std::input_iterator_tag iterator_category;
typedef typename Base::value_type value_type;
typedef typename Base::difference_type difference_type;
typedef typename Base::pointer pointer;
typedef typename Base::reference reference;
/// true iff this iterator is basic
typedef Tag_true Basic_iterator;
typedef typename Map::size_type size_type;
public:
/// Main constructor.
CMap_dart_iterator(Map& amap, Dart_descriptor adart):
Base(&amap.mdarts, adart),
mmap(&amap),
mfirst_dart(adart),
mprev_op(OP_NONE)
{}
/// == operator.
bool operator==(const Self& aiterator) const
{
return ((*this==mmap->null_descriptor) && (aiterator==mmap->null_descriptor)) ||
(mfirst_dart == aiterator.mfirst_dart &&
static_cast<const Base&>(*this)==
static_cast<const Base&>(aiterator));
}
/// != operator.
bool operator!=(const Self& aiterator) const
{ return !operator==(aiterator); }
/// Accessor to the initial dart of the iterator.
Dart_descriptor get_first_dart() const { return mfirst_dart; }
/// Accessor to the combinatorial map.
Map* get_combinatorial_map() const { return mmap; }
/// Rewind of the iterator to its beginning.
void rewind()
{ set_current_dart(mfirst_dart); mprev_op = OP_NONE; }
/// Test if the iterator is at its end.
bool cont() const
{ return this->get_current()!=mmap->null_descriptor; }
/// Get the previous operation used for the last ++.
OperationState prev_operation() const { return mprev_op; }
protected:
/// Set the current dart to a given dart
void set_current_dart(Dart_descriptor adart)
{ this->set_current(adart); }
private:
/// operator -- in private to invalidate the base operator.
Self& operator--()
{ return *this; }
/// operator -- in private to invalidate the base operator.
Self operator--(int)
{ return *this; }
protected:
/// test if adart->beta(ai) exists and is not marked for amark
bool is_unmarked(Dart_descriptor adart, unsigned int ai, size_type amark) const
{ return !mmap->is_marked(mmap->beta(adart,ai), amark); }
/// test if adart->beta(ai)->beta(aj) exists
bool exist_betaij(Dart_descriptor adart, unsigned int ai, unsigned int aj) const
{ return !mmap->is_free(adart, ai) && !mmap->is_free(mmap->beta(adart, ai), aj); }
/// test if adart->beta(ai)->beta(aj) exists and is not marked for amark
bool is_unmarked2(Dart_descriptor adart, unsigned int ai, unsigned int aj,
size_type amark) const
{ return !mmap->is_marked(mmap->beta(adart, ai, aj), amark); }
protected:
/// The map containing the darts to iterate on.
Map* mmap;
/// The initial dart of the iterator.
Dart_descriptor mfirst_dart;
/// The last operation used for the ++ operator.
OperationState mprev_op;
};
//****************************************************************************
/* Class CMap_extend_iterator<Map,Ite,Bi> which extend a given iterator by
* adding Bi and by using a stack and a mark.
* General case when Ite does not have already a stack.
*/
template <typename Map_,typename Ite,int Bi,
typename Ite_has_stack=typename Ite::Use_mark>
class CMap_extend_iterator: public Ite
{
public:
typedef CMap_extend_iterator<Map_,Ite,Bi, Ite_has_stack> Self;
typedef Ite Base;
typedef typename Base::Dart_descriptor Dart_descriptor;
typedef typename Base::Map Map;
typedef Tag_true Use_mark;
typedef typename Map::size_type size_type;
static_assert(Bi<=Map::dimension &&
std::is_same<Ite_has_stack,Tag_false>::value);
public:
/// Main constructor.
CMap_extend_iterator(Map& amap, Dart_descriptor adart, size_type amark):
Base(amap, adart),
mmark_number(amark),
minitial_dart(adart)
{
if ( minitial_dart!=amap.null_descriptor )
{
this->mmap->mark_null_dart(mmark_number);
this->mmap->mark(minitial_dart, mmark_number);
if (!this->mmap->is_free(minitial_dart, Bi) &&
this->mmap->beta(minitial_dart, Bi)!=minitial_dart )
{
mto_treat.push(this->mmap->beta(minitial_dart, Bi));
}
}
}
/// Rewind of the iterator to its beginning.
void rewind()
{
CGAL_assertion(mmark_number != Map::INVALID_MARK);
Base::operator= ( Base(*this->mmap,minitial_dart) );
mto_treat = std::queue<Dart_descriptor>();
this->mmap->mark(minitial_dart, mmark_number);
this->mmap->mark_null_dart(mmark_number);
if (!this->mmap->is_free(minitial_dart, Bi) &&
this->mmap->beta(minitial_dart, Bi)!=minitial_dart)
{
mto_treat.push(this->mmap->beta(minitial_dart, Bi));
}
}
/// Prefix ++ operator.
Self& operator++()
{
CGAL_assertion(mmark_number != Map::INVALID_MARK);
CGAL_assertion(this->cont());
do
{
Base::operator++();
}
while ( this->cont() &&
this->mmap->is_marked(*this, mmark_number) );
if ( !this->cont() )
{
while ( !mto_treat.empty() &&
this->mmap->is_marked(mto_treat.front(), mmark_number))
{
mto_treat.pop();
}
if ( !mto_treat.empty() )
{
Base::operator= ( Base(*this->mmap,mto_treat.front()) );
mto_treat.pop();
this->mprev_op = OP_POP;
CGAL_assertion( !this->mmap->is_marked((*this), mmark_number) );
this->mmap->mark((*this), mmark_number);
if (
!this->mmap->is_marked(this->mmap->beta(*this, Bi), mmark_number) )
{
mto_treat.push(this->mmap->beta(*this, Bi));
}
}
}
else
{
this->mmap->mark((*this), mmark_number);
if (
!this->mmap->is_marked(this->mmap->beta(*this, Bi), mmark_number) )
{
mto_treat.push(this->mmap->beta(*this, Bi));
}
}
return *this;
}
/// Postfix ++ operator.
Self operator++(int)
{ Self res=*this; operator ++(); return res; }
protected:
/// Queue of darts to process.
std::queue<Dart_descriptor> mto_treat;
/// Index of the used mark.
size_type mmark_number;
/// Initial dart
Dart_descriptor minitial_dart;
};
//****************************************************************************
/* Class CMap_extend_iterator<Map,Ite,Bi> which extend a given iterator by
* adding Bi and by using a stack and a mark.
* Specialization when Ite has already a stack.
*/
template <typename Map_,typename Ite,int Bi>
class CMap_extend_iterator<Map_,Ite,Bi,Tag_true>: public Ite
{
public:
typedef CMap_extend_iterator<Map_,Ite,Bi,Tag_true> Self;
typedef Ite Base;
typedef typename Base::Dart_descriptor Dart_descriptor;
typedef typename Base::Map Map;
typedef Tag_true Use_mark;
typedef typename Map::size_type size_type;
/// Main constructor.
CMap_extend_iterator(Map& amap, Dart_descriptor adart, size_type amark):
Base(amap, adart, amark)
{
if ( this->minitial_dart!=amap.null_descriptor &&
!this->mmap->is_free(this->minitial_dart, Bi) &&
this->mmap->beta(this->minitial_dart, Bi)!=this->minitial_dart )
{
this->mto_treat.push(this->mmap->beta(this->minitial_dart, Bi));
}
}
/// Rewind of the iterator to its beginning.
void rewind()
{
CGAL_assertion(this->mmark_number != Map::INVALID_MARK);
Base::rewind();
if ( !this->mmap->is_free(this->minitial_dart, Bi) &&
this->mmap->beta(this->minitial_dart, Bi)!=this->minitial_dart )
{
this->mto_treat.push(this->mmap->beta(this->minitial_dart, Bi));
}
}
/// Prefix ++ operator.
Self& operator++()
{
Base::operator++();
if ( this->cont() )
{
CGAL_assertion( this->mmap->is_marked(*this, this->mmark_number) );
if (
!this->mmap->is_marked(this->mmap->beta(*this, Bi), this->mmark_number) )
{
this->mto_treat.push(this->mmap->beta(*this, Bi));
}
}
return *this;
}
/// Postfix ++ operator.
Self operator++(int)
{ Self res=*this; operator ++(); return res; }
};
//****************************************************************************
//* Class CMap_non_basic_iterator allows to transform a basic_iterator onto
//* a non basic one, depending if the basic iterator uses mark or not.
template <typename Map_,typename Basic_iterator,
typename Use_mark=typename Basic_iterator::Use_mark>
class CMap_non_basic_iterator;
//****************************************************************************
template <typename Map_,typename Base_>
class CMap_non_basic_iterator<Map_,Base_,Tag_true>:
public Base_
{
public:
typedef CMap_non_basic_iterator<Map_,Base_,Tag_true> Self;
typedef Base_ Base;
typedef typename Base::Map Map;
typedef typename Base::Dart_descriptor Dart_descriptor;
/// True iff this iterator is basic
typedef Tag_false Basic_iterator;
typedef typename Map::size_type size_type;
static_assert(std::is_same<typename Base::Basic_iterator,
Tag_true>::value);
/// Main constructor.
CMap_non_basic_iterator(Map& amap, Dart_descriptor adart1):
Base(amap, adart1, amap.get_new_mark())
{}
/// Destructor.
~CMap_non_basic_iterator() noexcept(!CGAL_ASSERTIONS_ENABLED)
{
CGAL_destructor_assertion( this->mmark_number!=Map::INVALID_MARK );
if (this->mmap->get_number_of_times_mark_reserved
(this->mmark_number)==1)
unmark_treated_darts();
this->mmap->free_mark(this->mmark_number);
this->mmark_number = Map::INVALID_MARK; // To avoid basic class to try to unmark darts.
}
/// Copy constructor.
CMap_non_basic_iterator(const Self& aiterator):
Base(aiterator)
{ this->mmap->share_a_mark(this->mmark_number); }
/// Assignment operator.
Self& operator=(const Self& aiterator)
{
if (this != &aiterator)
{
if (this->mmap->get_number_of_times_mark_reserved
(this->mmark_number)==1)
unmark_treated_darts();
this->mmap->free_mark(this->mmark_number);
this->mmark_number = Map::INVALID_MARK;
Base::operator=(aiterator);
this->mmap->share_a_mark(this->mmark_number);
}
return *this;
}
/// Rewind of the iterator to its beginning.
void rewind()
{
unmark_treated_darts();
Base::rewind();
}
using Base::operator++;
/// Postfix ++ operator.
Self operator++(int)
{ Self res=*this; operator ++(); return res; }
protected:
/// Unmark all the marked darts during the iterator.
void unmark_treated_darts()
{
if (this->mmap->is_whole_map_unmarked(this->mmark_number)) return;
this->mmap->negate_mark(this->mmark_number);
if (this->mmap->is_whole_map_unmarked(this->mmark_number)) return;
Base::rewind();
while (this->mmap->number_of_unmarked_darts(this->mmark_number) > 0)
this->operator++();
this->mmap->negate_mark(this->mmark_number);
CGAL_assertion(this->mmap->is_whole_map_unmarked(this->mmark_number));
}
};
//****************************************************************************
template <typename Map_,typename Base_>
class CMap_non_basic_iterator<Map_,Base_,Tag_false>:
public Base_
{
public:
typedef CMap_non_basic_iterator<Map_,Base_,Tag_false> Self;
typedef Base_ Base;
typedef typename Base::Map Map;
typedef typename Base::Dart_descriptor Dart_descriptor;
/// True iff this iterator is basic
typedef Tag_false Basic_iterator;
static_assert(std::is_same<typename Base::Basic_iterator,
Tag_true>::value);
/// Main constructor.
CMap_non_basic_iterator(Map& amap, Dart_descriptor adart):
Base(amap, adart)
{}
};
//****************************************************************************
template <typename Map_, typename It, typename Const_it,
typename Basic_iterator=typename It::Basic_iterator>
struct CMap_range
{
typedef It iterator;
typedef Const_it const_iterator;
CMap_range(Map_ &amap, typename Map_::Dart_descriptor adart) :
mmap(amap), mdart(adart), msize(0)
{}
iterator begin() { return iterator(mmap,mdart); }
iterator end() { return iterator(mmap,mmap.null_descriptor); }
const_iterator begin() const { return const_iterator(mmap,mdart); }
const_iterator end() const { return const_iterator(mmap,mmap.null_descriptor); }
typename Map_::size_type size() const
{
if (msize==0)
for ( const_iterator it=begin(), itend=end(); it!=itend; ++it)
++msize;
return msize;
}
bool empty() const
{ return mmap.is_empty(); }
private:
Map_ & mmap;
typename Map_::Dart_descriptor mdart;
mutable typename Map_::size_type msize;
};
//****************************************************************************
template <typename Map_, typename It, typename Const_it>
struct CMap_range<Map_,It,Const_it,Tag_true>
{
typedef CMap_range<Map_,It,Const_it,Tag_true> Base_cmap_range;
typedef It iterator;
typedef Const_it const_iterator;
typedef typename Map_::size_type size_type;
CMap_range(Map_ &amap, typename Map_::Dart_descriptor adart, size_type amark=Map_::INVALID_MARK):
mmap(amap), mdart(adart), msize(0), mmark(amark)
{}
iterator begin() { return iterator(mmap,mdart,mmark); }
iterator end() { return iterator(mmap,mmap.null_descriptor,mmark); }
const_iterator begin() const { return const_iterator(mmap,mdart,mmark); }
const_iterator end() const { return const_iterator(mmap,mmap.null_descriptor,mmark); }
typename Map_::size_type size() const
{
if (msize==0)
for ( CMap_non_basic_iterator<Map_,const_iterator> it(mmap,mdart);
it.cont(); ++it )
++msize;
return msize;
}
bool empty() const
{ return mmap.is_empty(); }
private:
Map_ & mmap;
typename Map_::Dart_descriptor mdart;
mutable typename Map_::size_type msize;
size_type mmark;
};
//****************************************************************************
template <typename Map_, typename Const_it,
typename Basic_iterator=typename Const_it::Basic_iterator>
struct CMap_const_range
{
typedef Const_it const_iterator;
CMap_const_range(const Map_ &amap, typename Map_::Dart_const_descriptor adart):
mmap(amap), mdart(adart), msize(0)
{}
const_iterator begin() const { return const_iterator(mmap,mdart); }
const_iterator end() const { return const_iterator(mmap,mmap.null_descriptor); }
typename Map_::size_type size() const
{
if (msize==0)
for ( const_iterator it=begin(), itend=end(); it!=itend; ++it)
++msize;
return msize;
}
bool empty() const
{ return mmap.is_empty(); }
private:
const Map_ & mmap;
typename Map_::Dart_const_descriptor mdart;
mutable typename Map_::size_type msize;
};
//****************************************************************************
template <typename Map_, typename Const_it>
struct CMap_const_range<Map_,Const_it,Tag_true>
{
typedef Const_it const_iterator;
typedef typename Map_::size_type size_type;
CMap_const_range(const Map_ &amap, typename Map_::Dart_const_descriptor adart,
size_type amark=Map_::INVALID_MARK):
mmap(amap), mdart(adart), msize(0), mmark(amark)
{}
const_iterator begin() const { return const_iterator(mmap,mdart,mmark); }
const_iterator end() const { return const_iterator(mmap,mmap.null_descriptor,mmark); }
typename Map_::size_type size() const
{
if (msize==0)
for ( CMap_non_basic_iterator<Map_,const_iterator> it(mmap,mdart);
it.cont(); ++it )
++msize;
return msize;
}
bool empty() const
{ return mmap.is_empty(); }
private:
const Map_ & mmap;
typename Map_::Dart_const_descriptor mdart;
mutable typename Map_::size_type msize;
size_type mmark;
};
//****************************************************************************
} // namespace CGAL
#include <CGAL/enable_warnings.h>
//******************************************************************************
#endif // CGAL_COMBINATORIAL_MAP_ITERATORS_BASE_HH
//******************************************************************************
|