This file is indexed.

/usr/include/mathic/PairQueue.h is in libmathic-dev 1.0~git20170606-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
#ifndef MATHIC_PAIR_QUEUE_GUARD
#define MATHIC_PAIR_QUEUE_GUARD

#include "stdinc.h"

#include "TourTree.h"

#include <memtailor.h>
#include <limits>
#include <iterator>
#include <vector>
#include <algorithm>
#include <stdexcept>

namespace mathic {
  // A priority queue of integer pairs (col, row) with custom
  // comparison function via template. Pairs must be added to the data
  // structure one column index at a time, such as will be the case
  // for S-pairs in Buchberger's algorithm.
  //
  // Think of the data structure as storing a subset of the following
  // triangle
  //
  // row
  // 3|        x
  // 2|      x x
  // 1|    x x x
  // 0|  x x x x
  //   ---------
  //   0 1 2 3 4 col
  //
  // As you can see in this triangle, any pair (col, row) must have
  // col > row.
  //
  // The custom comparison is not directly between pairs but between
  // triples (col, row, pd) where pd is extra information that is
  // computed as a function pairData of the pair (col, row).  The
  // purpose of this is that pd=pairData(col, row) can contain
  // information that is necessary to compare two pairs but that is
  // expensive to compute. Storing pd then avoids the need to
  // recompute pd on each pair when comparing two pairs. If you do not
  // need pd then just let pairData compute an empty struct.
  //
  // The data structure stores only one pd value per column to cut
  // down on the memory cost associated to storing many pd's. The pd
  // value of a pair is computed exactly twice. This is a speed-memory
  // trade-off between the extremes of storing no pd's (slow due to
  // frequent recomputations) and storing a pd for every pair (can
  // take a lot of memory).
  //
  // The data structure is the S-pair queue that is described from a
  // high level in the paper "Practical Grobner Basis Computation"
  // that is available at http://arxiv.org/abs/1206.6940
  template<class Configuration>
  class PairQueue;

  namespace PairQueueNamespace {
	typedef unsigned int Index;

	// Used by PairData<Configuration> to construct a PairData object
	// to hold data for (col, row). PairData is not constructed in any
	// other way than to call this function.
	//
	// The default implementation default-constructs the PairData and
	// then calls Configuration::computePairData. Specialize
	// ConstructPairDataFunction for your particular configuration
	// type if you want something else to happen -- for example you
	// might not want default construction to occur.
	//
	// You could also specialize constructPairData directly, but this
	// is not recommended since C++ does not allow partial
	// specialization of function templates. Hence fully or partially
	// specializing ConstructPairDataFunction is a more general
	// mechanism that you might as well use.
	template<class Configuration>
	struct ConstructPairDataFunction {
	  typedef typename Configuration::PairData PairData;
	  static void function
	  (void* memory, Index col, Index row, Configuration& conf) {
		MATHIC_ASSERT(memory != 0);
		MATHIC_ASSERT(col > row);
		PairData* pd = new (memory) PairData();
		conf.computePairData(col, row, *pd);
	  }
	};
	template<class Configuration>
	void constructPairData
	(void* memory, Index col, Index row, Configuration& conf) {
	  ConstructPairDataFunction<Configuration>::function
		(memory, col, row, conf);
	}

	// Used by PairData<Configuration> to destruct a PairData object
	// currently holding data for (col, row). PairData is not
	// destructed in any other way than to call this function.
	//
	// The default implementation just calls the
	// destructor. Specialize DestructPairDataFunction for your
	// particular configuration type if you want something else to
	// happen -- for example PairData might hold memory allocated from
	// a memory pool that you want to return to the pool but you do
	// not want to put a reference to the memory pool inside every
	// PairData.
	//
	// You could also specialize destructPairData directly, but this
	// is not recommended since C++ does not allow partial
	// specialization of function templates. Hence fully or partially
	// specializing DestructPairDataFunction is a more general
	// mechanism that you might as well use.
	template<class Configuration>
	struct DestructPairDataFunction {
	  typedef typename Configuration::PairData PairData;
	  static void function
	  (PairData* pd, Index col, Index row, Configuration& conf) {
		MATHIC_ASSERT(pd != 0);
		MATHIC_ASSERT(col > row);
		pd->~PairData();
	  }
	};
	template<class Configuration>
	void destructPairData
	(typename Configuration::PairData* pd,
	 Index col, Index row, Configuration& conf) {
	  DestructPairDataFunction<Configuration>::function(pd, col, row, conf);
	}

	// Used by PairData<Configuration> to determine whether to allow
	// retirement of indexes. The default is to allow it, but there is
	// some overhead. This is configured separately from the
	// configuration to decrease the minimal size of a working
	// configuration.
	template<class Configuration>
	struct SupportRetirement {
	  // the value field must be static bool const.
	  static bool const value = true;
	};
  }

  namespace PairQueueInternal {
	// Derive with true parameter to support retirement and false to
	// not support retirement. The main point of this is not just to
	// save the memory for the bool, it's to make it clear to the
	// compiler that nothing is retired when retirement is not
	// supported.
	//
	// This class has to be outside the PairQueue class since partial
	// specialization is not supported for template member classes of
	// template classes.
	template<bool supportRetirement>
	class SupportRetirement {
	public:
	  void addNextIndex() {mRetired.push_back(false);}
	  void undoAdd() {
		MATHIC_ASSERT(!mRetired.empty());
		mRetired.pop_back();
	  }

	  void retireIndex(size_t index) {
		MATHIC_ASSERT(index < mRetired.size());
		mRetired[index] = true;
	  }

	  bool retired(size_t index) const {
		MATHIC_ASSERT(index < mRetired.size());
        // if we just cast to bool here the compiler has to ensure that the
        // value is not something other than 0 or 1. By reinterpreting the
        // reference as a bool we free the compiler from this obligation.
		return reinterpret_cast<const bool&>(mRetired[index]);
	  }

	private:
      // using char in place of bool to avoid the slow specialization
      // for std::vector<bool>
      std::vector<char> mRetired;
	};

	template<>
	class SupportRetirement<false> {
	public:
	  void addNextIndex() {}
	  void undoAdd() {}

	  void retireIndex(size_t index) {
		MATHIC_ASSERT(false); // this method should not be called.
	  }

	  bool retired(size_t index) const {
		return false;
	  }
	};
  }

  template<class C>
  class PairQueue : private PairQueueInternal::SupportRetirement<PairQueueNamespace::SupportRetirement<C>::value> {
  public:
	typedef C Configuration;
	typedef typename C::PairData PairData;
	typedef PairQueueNamespace::Index Index;
	static bool const SupportRetirement =
	  PairQueueNamespace::SupportRetirement<Configuration>::value;

	// PairQueue stores a copy of the passed in configuration.
	PairQueue(const Configuration& conf);
	~PairQueue();

	// Returns the stored configuration.
	Configuration& configuration() {return mConf;}

	// Returns the stored configuration.
	Configuration const& configuration() const {return mConf;}

	// Returns how many columns the triangle has. O(1) time.
	size_t columnCount() const {return mColumnCount;}

	// Returns how many pairs are in the triangle. O(columnCount())
	// time.
	size_t pairCount() const;

	// Returns true if there are no pairs in the triangle. O(1) time.
	bool empty() const;

	// As addColumn, but the range [sortedRowsBegin, sortedRowsEnd)
	// must be sorted in weakly descending order according to the
	// custom sorting function.
	template<class Iter>
	void addColumnDescending(Iter rowsBegin, Iter rowsEnd);

    // Returns the maximal pair according to the custom ordering on
	// pairs.
	std::pair<size_t, size_t> topPair() const;
	
	// Returns the PairData of topPair().
	const PairData& topPairData() const;

	// Removes topPair() from the data structure.
	void pop();

	// Returns how many bytes of memory this data structure consumes
	// not including sizeof(*this).
	size_t getMemoryUse() const;

	// Returns a string that describes how this data structure was
	// configured.
	std::string name() const;

	// Remove all pairs of the form (index,x) or (x,index). It is not
	// allowed to add such pairs in future. You must not retire an
	// index twice (that could be a bug and we want to assert in that
	// case to surface the issue).
	//
	// ATTENTION: retired indexes can still appear in comparisons if
	// that pair already has its PairData computed and stored and
	// those comparisons must still work the same way that they did
	// previously. No new PairData will be computed using retired
	// indexes and of course topPair() will never involve a retired
	// index.
	//
	// ATTENTION: All the retired pairs are not identified right away
	// so pairCount() might still count some retired pairs.
	//
	// ATTENTION: If you have disabled support for retirement then you
	// may not call this method.
	void retireIndex(size_t index);

	// Returns true if index has been retired. If support for
	// retirement has been turned off then this method always returns
	// false.
	bool retired(size_t index) const;

  private:
	typedef unsigned short SmallIndex;

	typedef PairQueueInternal::SupportRetirement<SupportRetirement> Retirer;

    class Column  {
	public:
	  template<class Iter>
	  static Column* create
	  (Index col, Iter rowsBegin, Iter rowsEnd, C& conf, memt::Arena& arena);

	  const PairData& pairData() {MATHIC_ASSERT(!empty()); return mPairData;}
	  Index columnIndex() const {return mColumnIndex;}
	  Index rowIndex() const;

	  // Recomputes pairData if not empty. Skips retired rows.
	  void incrementRowIndex(PairQueue<C>& pq); 
	  bool empty() const;
	  size_t size() const; // number of pairs remaining in this column

	  void destruct(C& conf) {
		// if empty then we already destructed the data
		if (!empty())
		  destruct(rowIndex(), conf);
	  }

	private:
	  // Do not call contructors on Column as that would construct the
	  // PairData directly which is not allowed -- instead call the
	  // factory function.
	  Column(); // not available
	  Column(const Column&); // not available
	  void operator=(const Column&); // not available

	  // Do not call the destructor as that would destruct the
	  // PairData directly which is not allowed -- instead call
	  // destruct(conf).
	  ~Column(); // not available

	  void destruct(Index row, C& conf) {
		PairQueueNamespace::
		  destructPairData(&mPairData, columnIndex(), row, conf);
	  }

	  PairData mPairData; // pairData of (columnIndex(), rowIndex())
	  Index mColumnIndex; // all pairs here have this column index
	  
	  bool big() const; // returns true if we need to use big part of union
	  union { // the current row index is *begin
		Index* bigBegin;
		SmallIndex* smallBegin;
	  };
	  union { // the row indices lie in [begin, end)
		Index* bigEnd; 
		SmallIndex* smallEnd;
	  };
	};

	class ColumnSizeSummer {
	public:
	  ColumnSizeSummer(): mSizeSum(0) {}
	  size_t sizeSum() const {return mSizeSum;}
	  bool proceed(Column const* const column) {
		mSizeSum += column->size();
		return true;
	  }
	private:
	  size_t mSizeSum;
	};

	class ColumnDestructor {
	public:
	  ColumnDestructor(C& conf): mConf(conf) {}
	  bool proceed(Column* const column) {
		column->destruct(mConf);
		return true;
	  }
	private:
	  C& mConf;
	};

	class QueueConfiguration : TourTreeSuggestedOptions {
	public:
	  QueueConfiguration(Configuration& conf): mConf(conf) {}

	  typedef Column* Entry;

	  typedef typename C::CompareResult CompareResult;
	  CompareResult compare(const Entry& a, const Entry& b) const {
		return mConf.compare(a->columnIndex(), a->rowIndex(), a->pairData(),
							 b->columnIndex(), b->rowIndex(), b->pairData());
	  }
	  bool cmpLessThan(CompareResult cr) const {
		return mConf.cmpLessThan(cr);
	  }

      static const bool fastIndex = false;

	private:
	  Configuration& mConf;
	};
	typedef TourTree<QueueConfiguration> ColumnQueue;

	ColumnQueue mColumnQueue;
	size_t mColumnCount;
	memt::Arena mArena;
	memt::Arena mScratchArena;
	Configuration mConf;
  };

  //// Implementation
  template<class C>
  template<class Iter>
  typename PairQueue<C>::Column* PairQueue<C>::Column::create
  (Index const col,
   Iter const rowsBegin, Iter const rowsEnd,
   C& conf,
   memt::Arena& arena) {
	Column* column = arena.allocObjectNoCon<Column>();
	column->mColumnIndex = col;

#ifdef MATHIC_DEBUG
	// check that the passed in range is weakly descending according
	// to the custom order.
	if (rowsBegin != rowsEnd) {
	  Iter prevIt = rowsBegin;
	  Iter it = rowsBegin;
	  for (++it; it != rowsEnd; ++it, ++prevIt) {
		memt::Arena::PtrNoConNoDecon<PairData> prevPd(arena);
		memt::Arena::PtrNoConNoDecon<PairData> currentPd(arena);

		PairQueueNamespace::constructPairData(prevPd.get(), col, *prevIt, conf);
		try {
		  PairQueueNamespace::constructPairData
			(currentPd.get(), col, *it, conf);
		} catch (...) {
		  PairQueueNamespace::
			destructPairData(prevPd.get(), col, *prevIt, conf);
		  throw;
		}

		// check prev >= current, which is equivalent to !(prev < current)
		MATHIC_ASSERT
		  (!conf.cmpLessThan(conf.compare(col, *prevIt, *prevPd,
										  col, *it, *currentPd)));
		PairQueueNamespace::
		  destructPairData(currentPd.get(), col, *prevIt, conf);
		PairQueueNamespace::destructPairData(prevPd.get(), col, *prevIt, conf);
	  }
	}
#endif

	size_t const entryCount = std::distance(rowsBegin, rowsEnd);
	if (column->big()) {
	  std::pair<Index*, Index*> const range =
		arena.allocArrayNoCon<Index>(entryCount);
	  column->bigBegin = range.first;
	  column->bigEnd = range.second;
	  Index* rangeIt = range.first;
	  Iter rowsIt = rowsBegin;
	  for (; rangeIt != range.second; ++rangeIt, ++rowsIt) {
		MATHIC_ASSERT(rowsIt != rowsEnd);
		MATHIC_ASSERT(*rowsIt < col);
		MATHIC_ASSERT(*rowsIt < std::numeric_limits<Index>::max());
		*rangeIt = static_cast<Index>(*rowsIt);
	  }
	  MATHIC_ASSERT(rowsIt == rowsEnd);
	} else {
	  std::pair<SmallIndex*, SmallIndex*> range =
		arena.allocArrayNoCon<SmallIndex>(entryCount);
	  column->smallBegin = range.first;
	  column->smallEnd = range.second;
	  SmallIndex* rangeIt = range.first;
	  Iter rowsIt = rowsBegin;
	  for (; rangeIt != range.second; ++rangeIt, ++rowsIt) {
		MATHIC_ASSERT(rowsIt != rowsEnd);
		MATHIC_ASSERT(*rowsIt < col);
		MATHIC_ASSERT(*rowsIt < std::numeric_limits<SmallIndex>::max());
		*rangeIt = static_cast<SmallIndex>(*rowsIt);
	  }
	}
	MATHIC_ASSERT(column->size() == entryCount);
	MATHIC_ASSERT(column->empty() == (entryCount == 0));
	PairQueueNamespace::constructPairData
	  (&column->mPairData, col, *rowsBegin, conf);
	return column;
  }

  template<class C>
  typename PairQueue<C>::Index PairQueue<C>::Column::rowIndex() const {
	MATHIC_ASSERT(!empty());
	if (big())
	  return *bigBegin;
	else
	  return *smallBegin;
  }

  template<class C>
  void PairQueue<C>::Column::incrementRowIndex(PairQueue<C>& pq) {
	MATHIC_ASSERT(!empty());
	if (big()) {
	  do {
		++bigBegin;
		if (bigBegin == bigEnd) {
		  MATHIC_ASSERT(empty());
		  destruct(*(bigBegin - 1), pq.configuration());
		  return;
		}
	  } while (PairQueue::SupportRetirement && pq.retired(*bigBegin));
	} else {
	  do {
		++smallBegin;
		if (smallBegin == smallEnd) {
		  MATHIC_ASSERT(empty());
		  destruct(*(smallBegin - 1), pq.configuration());
		  return;
		}
	  } while (PairQueue::SupportRetirement && pq.retired(*smallBegin));
	}
	MATHIC_ASSERT(!empty());
	MATHIC_ASSERT(!pq.retired(rowIndex()));
	pq.configuration().computePairData(columnIndex(), rowIndex(), mPairData);
  }

  template<class C>
  bool PairQueue<C>::Column::empty() const {
	if (big())
	  return bigBegin == bigEnd;
	else
	  return smallBegin == smallEnd;
  }

  template<class C>
  size_t PairQueue<C>::Column::size() const {
	if (big())
	  return bigEnd - bigBegin;
	else
	  return smallEnd - smallBegin;
  }

  template<class C>
  bool PairQueue<C>::Column::big() const {
	return columnIndex() >=
	  static_cast<size_t>(std::numeric_limits<SmallIndex>::max());
  }

  template<class C>
  PairQueue<C>::PairQueue(const Configuration& conf):
	mConf(conf),
	mColumnQueue(QueueConfiguration(mConf)),
	mColumnCount(0) {
  }

  template<class C>
  PairQueue<C>::~PairQueue() {
	ColumnDestructor destructor(mConf);
	mColumnQueue.forAll(destructor);
  }

  template<class C>
  bool PairQueue<C>::empty() const {
	MATHIC_ASSERT(mColumnQueue.empty() || !mColumnQueue.top()->empty());
	return mColumnQueue.empty();
  }

  template<class C>
  size_t PairQueue<C>::pairCount() const {
	ColumnSizeSummer summer;
	mColumnQueue.forAll(summer);
	return summer.sizeSum();
  }

  template<class C>
  template<class Iter>
  void PairQueue<C>::addColumnDescending
  (Iter const sortedRowsBegin, Iter const sortedRowsEnd) {
#ifdef DEBUG
	if (SupportRetirement) {
	  for (Iter it = sortedRowsBegin; it != sortedRowsEnd; ++it)
		MATHIC_ASSERT(!retired(*it));
	}
#endif
	if (mColumnCount >= std::numeric_limits<Index>::max())
	  throw std::overflow_error("Too large column index in PairQueue.");
	Index const newColumnIndex = static_cast<Index>(mColumnCount);
	Retirer::addNextIndex();
	++mColumnCount;
	if (sortedRowsBegin != sortedRowsEnd) {
	  try {
		memt::Arena::Guard guard(mArena);
	
		Column* column = Column::create
		  (newColumnIndex, sortedRowsBegin, sortedRowsEnd, mConf, mArena);
		
		try {
		  mColumnQueue.push(column);
		} catch (...) {
		  column->destruct(mConf);
		  throw;
		}
		guard.release();
	  } catch (...) {
		Retirer::undoAdd();
		--mColumnCount;
		throw;
	  }
	}
  }

  template<class C>
  void PairQueue<C>::pop() {
	MATHIC_ASSERT(!empty());
	Column* topColumn = mColumnQueue.top();
	do {
	  MATHIC_ASSERT(!empty());
	  MATHIC_ASSERT(topColumn == mColumnQueue.top());
	  MATHIC_ASSERT(topColumn != 0);
	  MATHIC_ASSERT(!topColumn->empty());

	  if (!SupportRetirement || !retired(topColumn->columnIndex())) {
	    // Note that all mathic queues allow doing this sequence of
		// actions: top(), change top element in-place, do decreaseTop/pop.
		topColumn->incrementRowIndex(*this);
		if (!topColumn->empty()) {
		  MATHIC_ASSERT(!retired(topColumn->columnIndex()));
		  MATHIC_ASSERT(!retired(topColumn->rowIndex()));
		  mColumnQueue.decreaseTop(topColumn);
		  goto doNotDestroy;
		}
	  }
	  topColumn->destruct(mConf);
	  mColumnQueue.pop();
	doNotDestroy:;
	  if (!SupportRetirement || mColumnQueue.empty())
		break;
	  topColumn = mColumnQueue.top();
	} while (retired(topColumn->columnIndex()) ||
			 retired(topColumn->rowIndex()));
	MATHIC_ASSERT(!SupportRetirement || empty() || !retired(topPair().first));
	MATHIC_ASSERT(!SupportRetirement || empty() || !retired(topPair().second));
  }

  template<class C>
  size_t PairQueue<C>::getMemoryUse() const {
	return mArena.getMemoryUse() + mColumnQueue.getMemoryUse();
  }

  template<class C>
  std::string PairQueue<C>::name() const {
	return std::string("PairQueue-") + mColumnQueue.getName();
  }

  template<class C>
  void PairQueue<C>::retireIndex(size_t index) {
	MATHIC_ASSERT(SupportRetirement);
	MATHIC_ASSERT(index < columnCount());
	Retirer::retireIndex(index);
	if (!empty()) {
	  std::pair<size_t, size_t> p = topPair();
	  if (p.first == index || p.second == index)
		pop();
	}
  }

  template<class C>
  bool PairQueue<C>::retired(size_t index) const {
	MATHIC_ASSERT(index < columnCount());
	return Retirer::retired(index);
  }

  template<class C>
  std::pair<size_t, size_t> PairQueue<C>::topPair() const {
	MATHIC_ASSERT(!mColumnQueue.empty());
	Column* topColumn = mColumnQueue.top();
	MATHIC_ASSERT(topColumn != 0);
	MATHIC_ASSERT(!topColumn->empty());
	return std::make_pair(topColumn->columnIndex(), topColumn->rowIndex());
  }

  template<class C>
  const typename PairQueue<C>::PairData& PairQueue<C>::topPairData() const {
	MATHIC_ASSERT(!mColumnQueue.empty());
	Column* topColumn = mColumnQueue.top();
	MATHIC_ASSERT(topColumn != 0);
	MATHIC_ASSERT(!topColumn->empty());
	return topColumn->pairData();
  }
}

#endif