This file is indexed.

/usr/include/polymake/graph/arc_linking.h is in libpolymake-dev-common 3.2r2-3.

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
/* Copyright (c) 2015
   Julian Pfeifle
   julian.pfeifle@upc.edu

   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 3, or (at your option) any
   later version: http://www.gnu.org/licenses/gpl.txt.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
--------------------------------------------------------------------------------
*/

#ifndef POLYMAKE_GRAPH_ARC_LINKING_H
#define POLYMAKE_GRAPH_ARC_LINKING_H
    
#include "polymake/client.h"
#include "polymake/Array.h"
#include "polymake/Set.h"
#include "polymake/Map.h"
#include "polymake/Graph.h"
#include <vector>
  
namespace polymake { namespace graph {

      //The implementation is adapted from the dancing links implementation by 
      //Julian Pfeifle, https://github.com/julian-upc/2015-algorithms/tree/master/dancing_links/c%2B%2B
      //
      //Donald E. Knuth, Dancing Links, arXiv:cs/0011047 
      //Donald E. Knuth, The Art of Computer Programming, Volume 4, Fascicle 4, 24-31, 2006, Pearson Education Inc.
      




class ArcLinking {
private:
   // Properties that all cells have in common
   class IncidenceCellBase {
      friend class ArcLinking;
   public:
      IncidenceCellBase* up;
      IncidenceCellBase* down;
      int id;   
      int tip;

      IncidenceCellBase() {}

      IncidenceCellBase(IncidenceCellBase* up,
                     IncidenceCellBase* down,
                     const int id,
                     const int tip)
         : up(up)
         , down(down)
         , id(id)
         , tip(tip)
      {}

      IncidenceCellBase(const int id, const int tip)
         : up(this)
         , down(this)
         , id(id)
         , tip(tip)
      {}
  
      IncidenceCellBase &operator=(const IncidenceCellBase&) = delete;
   };
   
public:
   class ColumnObject;

   // Cells representing arcs 
   class IncidenceCell : public IncidenceCellBase {
      friend class ArcLinking;
   public:
      IncidenceCell* left;
      IncidenceCell* right;
      IncidenceCell* link;
      
      ColumnObject* list_header;

      IncidenceCell() {}

      IncidenceCell(IncidenceCell* left, 
                    IncidenceCell* right, 
                    IncidenceCellBase* up,
                    IncidenceCellBase* down,
                    ColumnObject* list_header,
                    const int id,
                    const int tip)
         : IncidenceCellBase(up, down, id, tip)
         , left(left)
         , right(right)
         , link(nullptr)
         , list_header(list_header)
      {}
      
      IncidenceCell(const IncidenceCell&) = delete;
  
      IncidenceCell &operator=(const IncidenceCell&) = delete;
   };

   // Bidirectional iterator traversing the IncidenceCells to which the ColumnObject points
   // While this iterator lives, changes to up and down pointers have to be made with caution (see definition of end()).
   class ColumnIterator {  
      friend class ArcLinking;
   protected:
      const IncidenceCellBase& col;
      IncidenceCellBase* current;
      
   public:
      typedef std::bidirectional_iterator_tag iterator_category;
      typedef IncidenceCellBase* value_type;    
      typedef value_type& reference;
      typedef value_type* pointer;
      typedef ptrdiff_t difference_type;

      typedef ColumnIterator iterator;
      
      ColumnIterator() = default;
      
      ColumnIterator(ColumnObject& col_arg);
 
      reference operator* () { return current; }
      pointer operator-> () { return &current; }

      iterator& operator++ ()
      {
         current = current->down;
         return *this;
      }
      const iterator operator++ (int) { iterator copy(*this);  operator++();  return copy; }
      
      iterator& operator-- ()
      {
         current = current->up;
         return *this;
      }
      
      const iterator operator-- (int) { iterator copy(*this);  operator--();  return copy; }

      bool operator== (const iterator& it) const
      {
         return (current == it.current);
      }
      bool operator!= (const iterator& it) const { return !operator==(it); }
   };

   // Header cells functioning as anchors for outgoing arcs
   class ColumnObject : public IncidenceCellBase {
      friend class ColumnIterator;
      friend class ArcLinking;
   public:
      typedef ColumnIterator iterator;
      
      ColumnObject* left;
      ColumnObject* right; 
      int size;
      ColumnObject(ColumnObject* left, 
                   ColumnObject* right, 
                   IncidenceCellBase* up,
                   IncidenceCellBase* down,
                   const int id)
         : IncidenceCellBase(up, down, id, -1)
         , left(left)
         , right(right)
         , size(0) 
      {}

      ColumnObject(const int id) 
         : IncidenceCellBase(id, -1) 
         , left(this)
         , right(this)
         , size(0) 
      {}
      
      ColumnObject(const ColumnObject&) = delete;
  
      ColumnObject &operator=(const ColumnObject&) = delete;
      
      iterator begin() { return iterator( *this ); }
    
      iterator end() { return --iterator( *this ); }
      
      iterator rbegin() { return ----iterator( *this ); }

      iterator rend() { return --iterator( *this ); }
   };

private:
   ColumnObject* h;
   int rows;
   Map<int, ColumnObject*> column_object_of_id;

public:   
   ArcLinking()
      : h(new ColumnObject(-1))
      , rows(0)
      , column_object_of_id() 
   {
      column_object_of_id[-1] = h;
   }
   
   ArcLinking(const std::vector<int>& ids)
      : ArcLinking()
   {
      append_column_objects(ids);
   }
   
   ArcLinking(int n) : ArcLinking()
   { 
      std::vector<int> ids;
      for (int i = 0; i < n; ++i)
         ids.push_back(i);
      append_column_objects(ids);
   }
      
   ArcLinking(const Graph<Undirected>& G, Array<IncidenceCell*>& a ) : ArcLinking(G.nodes())
   { 
      int i = 0;
      for (Entire<Edges<Graph<> > >::const_iterator eit = entire(edges(G)); !eit.at_end(); ++eit, ++i) {
         std::vector<std::tuple<int,int,int>> row;
         row.push_back(std::make_tuple(eit.to_node(),i,eit.from_node()));
         row.push_back(std::make_tuple(eit.from_node(),i,eit.to_node()));
         a[i] = append_row(row);
      }
   }

   ArcLinking(const ArcLinking&) = delete;
  
   ArcLinking &operator=(const ArcLinking&) = delete;

   //appends column objects to the right
   //the ids must be unique
   void append_column_objects(const std::vector<int>& ids) {
      ColumnObject* current_column_object{h};
      for (const auto& i : ids) {
         insert_column_object(current_column_object, h, i);
         current_column_object = current_column_object->right;
         column_object_of_id[i] = current_column_object;
      }
   }

   void insert_column_object(ColumnObject* left,
                             ColumnObject* right,
                             const int id) {
      ColumnObject* x = new ColumnObject(id);
      x->left = left;
      x->right = right;
      x->up = x;
      x->down = x;
      right->left = x;
      left->right = x;
      ++h->size;
   }
   
   //appends a row of IncidenceCells, where each tuple in the vector has the form <list_header,id,tip>
   IncidenceCell* append_row(const std::vector<std::tuple<int, int, int>>& elements) {
      auto eit = elements.cbegin();
      ColumnObject* row_header_col = column_object_of_id[std::get<0>(*eit)];
      IncidenceCell* row_header = new IncidenceCell(nullptr,
                                                    nullptr,
                                                    row_header_col->up,
                                                    row_header_col,
                                                    row_header_col,
                                                    std::get<1>(*eit),
                                                    std::get<2>(*eit));
      row_header->left = row_header->right = row_header;
      row_header_col->up->down = row_header;
      row_header_col->up = row_header;
      ++row_header_col->size;
      while (++eit != elements.cend()) {
         ColumnObject* list_header = column_object_of_id[std::get<0>(*eit)];
         IncidenceCell* x = new IncidenceCell(
            row_header->left, 
            row_header, 
            list_header->up,
            list_header,
            list_header,
            std::get<1>(*eit),
            std::get<2>(*eit));
         x->up->down = x->down->up = x->right->left = x->left->right = x;
         ++list_header->size;
      }
      ++rows;
      return row_header;
   }
   
   //before calling the destructor, the initial linking must be restored
   ~ArcLinking() {
      for (auto column_it = entire(column_object_of_id); !column_it.at_end(); ++column_it) {
         IncidenceCellBase* current_cell = (*column_it).second->down;
         IncidenceCellBase* next = nullptr;
         while (current_cell != (*column_it).second) {
            next = current_cell->down;
            delete static_cast<IncidenceCell*>(current_cell);
            current_cell = next;
         }  
         delete (*column_it).second;
      }
   }

   ColumnObject* get_column_object(const int& i) {
      return column_object_of_id[i];
   }
   
   int get_rows() {
      return rows;
   }

   pm::Set<int> ids_of_column(ColumnObject* c) {
      pm::Set<int> ids;
      for (auto it = c->begin(); it != c->end(); ++it)
         ids += (*it)->id;
      return ids;
   }
   
   IncidenceCell* reverse(IncidenceCell* i) {
      return i->right;
   }
   
   void delete_incidenceCell(IncidenceCell* i) {
      i->up->down = i->down;
      i->down->up = i->up;
      --i->list_header->size;
   }
   
   void undelete_incidenceCell(IncidenceCell* i) {
      i->up->down = i;
      i->down->up = i;
      ++i->list_header->size;
   }
   
   void delete_row_exclusive(IncidenceCell* r) 
   {
      IncidenceCell* i = r->right;
      while (i != r) {
         delete_incidenceCell(i);         
         i = i->right;      
      } 
   }
   
   void undelete_row_exclusive(IncidenceCell* r) 
   {
      IncidenceCell* i = r->left;
      while (i != r) {
         undelete_incidenceCell(i);
         i = i->left;      
      }
   }
   
   void delete_row(IncidenceCell* r) 
   {
      delete_incidenceCell(r);
      delete_row_exclusive(r); 
   }
   
   void undelete_row(IncidenceCell* r) 
   {
      undelete_row_exclusive(r); 
      undelete_incidenceCell(r);
   }
   
   //deletes all arcs between u to v, bends all arcs with tip being u to v and hangs the list of u into v
   IncidenceCell* contract_edge(ColumnObject* u, ColumnObject* v) {
      IncidenceCell* g = 0;
      for (auto it = u->begin(); it != u->end(); ++it) {
         if ((*it)->tip == v->id) {
               delete_row(static_cast<IncidenceCell*>(*it));
               static_cast<IncidenceCell*>(*it)->link = g;
               g = static_cast<IncidenceCell*>(*it);
         } 
         else 
            reverse(static_cast<IncidenceCell*>(*it))->tip = v->id;
      }
      hang_in(u,v);
      return g;
   }
   
   //reverts contract_edge()
   void expand_edge(ColumnObject* u, ColumnObject* v, IncidenceCell* l) {
      hang_out(u,v);
      for (auto it = u->rbegin(); it != u->rend(); --it) { 
         reverse(static_cast<IncidenceCell*>(*it))->tip = u->id;
      }     
      while (l != nullptr) {
         undelete_row(reverse(l));
         l = l->link;
      }     
   }
   
   void hang_in(ColumnObject* a, ColumnObject* b) {
      a->up->down = b->down;
      b->down->up = a->up;
      a->down->up = b;
      b->down = a->down;
      b->size += a->size;
   }
   
   void hang_out(ColumnObject* a, ColumnObject* b) {
      b->down = a->up->down;
      b->down->up = b;
      a->up->down = a;
      a->down->up = a;
      b->size -= a->size;
   } 
   
   void cover_column(ColumnObject* c) {
      c->right->left = c->left;
      c->left->right = c->right;
      for (auto i = c->begin(); i != c->end(); ++i) {
         delete_row_exclusive(static_cast<IncidenceCell*>(*i));
      }
   }

   void uncover_column(ColumnObject* c) {
      for (auto i = c->rbegin(); i != c->rend(); --i) {
         delete_row_exclusive(static_cast<IncidenceCell*>(*i));
      }
      c->right->left = c;
      c->left->right = c;
   }
};

ArcLinking::ColumnIterator::ColumnIterator(ColumnObject& col_arg)
      : col(col_arg), current(col_arg.down)
   {}

} }

#endif // POLYMAKE_GRAPH_ARC_LINKING_H

// Local Variables:
// mode:C++
// c-basic-offset:3
// indent-tabs-mode:nil
// End: