This file is indexed.

/usr/include/irstlm/ngramtable.h is in libirstlm-dev 5.80.03-2.

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
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
712
713
714
715
716
717
718
719
720
// $Id: ngramtable.h 34 2010-06-03 09:19:34Z nicolabertoldi $

/******************************************************************************
IrstLM: IRST Language Model Toolkit, compile LM
Copyright (C) 2006 Marcello Federico, ITC-irst Trento, Italy

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library 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
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA

******************************************************************************/

#ifndef MF_NGRAMTABLE_H
#define MF_NGRAMTABLE_H

//Backoff symbol
#ifndef BACKOFF_
#define BACKOFF_ "_backoff_"
#endif

//Dummy symbol
#ifndef DUMMY_
#define DUMMY_ "_dummy_"
#endif

// internal data structure

#ifdef MYCODESIZE
#define DEFCODESIZE  MYCODESIZE
#else
#define DEFCODESIZE  (int)2
#endif

#define SHORTSIZE (int)2
#define PTRSIZE   (int)sizeof(char *)
#define INTSIZE   (int)4
#define CHARSIZE  (int)1


//Node  flags
#define FREQ1  (unsigned char)   1
#define FREQ2  (unsigned char)   2
#define FREQ4  (unsigned char)   4
#define INODE  (unsigned char)   8
#define LNODE  (unsigned char)  16
#define SNODE  (unsigned char)  32
#define FREQ6 (unsigned char)   64
#define FREQ3  (unsigned char) 128

typedef char* node;  //inodes, lnodes, snodes
typedef char* table; //inode table, lnode table, singleton table

typedef unsigned char NODETYPE;


typedef enum {FIND,    //!< search: find an entry
              ENTER,   //!< search: enter an entry
              DELETE,  //!< search: find and remove entry
              INIT,    //!< scan: start scan
              CONT     //!< scan: continue scan
             } ACTION;


typedef enum {COUNT,       //!< table: only counters
              LEAFPROB,    //!< table: only probs on leafs
              FLEAFPROB,    //!< table: only probs on leafs and FROZEN
              LEAFPROB2,   //!< table: only probs on leafs
              LEAFPROB3,   //!< table: only probs on leafs
              LEAFPROB4,   //!< table: only probs on leafs
              LEAFCODE,    //!< table: only codes on leafs
              SIMPLE_I,    //!< table: simple interpolated LM
              SIMPLE_B,    //!< table: simple backoff LM
              SHIFTBETA_I, //!< table: interpolated shiftbeta
              SHIFTBETA_B, //!< table: backoff shiftbeta
              MSHIFTBETA_I,//!< table: interp modified shiftbeta
              MSHIFTBETA_B,//!< table: backoff modified shiftbeta
              FULL,        //!< table: full fledged table

             } TABLETYPE;



class tabletype
{

  TABLETYPE ttype;

public:

  int CODESIZE;                //sizeof word codes
  long long code_range[7]; //max code for each size

  //Offsets of internal node fields
  int WORD_OFFS;   //word code position
  int MSUCC_OFFS;  //number of successors
  int MTAB_OFFS;   //pointer to successors
  int FLAGS_OFFS;  //flag table
  int SUCC1_OFFS;  //number of successors with freq=1
  int SUCC2_OFFS;  //number of successors with freq=2
  int BOFF_OFFS;   //back-off probability
  int I_FREQ_OFFS; //frequency offset
  int I_FREQ_NUM;  //number of internal frequencies
  int L_FREQ_NUM;  //number of leaf frequencies
  int L_FREQ_SIZE; //minimum size for leaf frequencies

  //Offsets of leaf node fields
  int L_FREQ_OFFS; //frequency offset

  TABLETYPE tbtype() {
    return ttype;
  }

  tabletype(TABLETYPE tt,int codesize=DEFCODESIZE) {

    if (codesize<=4 && codesize>0)
      CODESIZE=codesize;
    else {
      cerr << "ngramtable wrong codesize\n";
      exit(1);
    }

    code_range[1]=255;
    code_range[2]=65535;
    code_range[3]=16777214;
    code_range[4]=2147483640;
    code_range[6]=140737488360000LL; //stay below true limit
//	code_range[6]=281474977000000LL; //stay below true limit

    //information which is useful to initialize
    //LEAFPROB tables
    L_FREQ_SIZE=FREQ1;

    WORD_OFFS  =0;
    MSUCC_OFFS =CODESIZE;
    MTAB_OFFS  =MSUCC_OFFS+CODESIZE;
    FLAGS_OFFS =MTAB_OFFS+PTRSIZE;

    switch (tt) {

    case COUNT:
      SUCC1_OFFS =0;
      SUCC2_OFFS =0;
      BOFF_OFFS  =0;
      I_FREQ_OFFS=FLAGS_OFFS+CHARSIZE;
      I_FREQ_NUM=1;
      L_FREQ_NUM=1;

      ttype=tt;
      break;

    case FULL:
    case MSHIFTBETA_B:
      SUCC1_OFFS =FLAGS_OFFS+CHARSIZE;
      SUCC2_OFFS =SUCC1_OFFS+CODESIZE;
      BOFF_OFFS  =SUCC2_OFFS+CODESIZE;
      I_FREQ_OFFS=BOFF_OFFS+INTSIZE;
      L_FREQ_OFFS=CODESIZE;
      I_FREQ_NUM=2;
      L_FREQ_NUM=1;

      ttype=tt;
      break;

    case MSHIFTBETA_I:
      SUCC1_OFFS =FLAGS_OFFS+CHARSIZE;
      SUCC2_OFFS =SUCC1_OFFS+CODESIZE;
      BOFF_OFFS  =0;
      I_FREQ_OFFS=SUCC2_OFFS+CODESIZE;
      L_FREQ_OFFS=CODESIZE;
      I_FREQ_NUM=2;
      L_FREQ_NUM=1;

      ttype=tt;
      break;

    case SIMPLE_I:
      SUCC1_OFFS = 0;
      SUCC2_OFFS = 0;
      BOFF_OFFS  = 0;
      I_FREQ_OFFS= FLAGS_OFFS+CHARSIZE;
      L_FREQ_OFFS=CODESIZE;
      I_FREQ_NUM=1;
      L_FREQ_NUM=1;

      ttype=tt;
      break;

    case SIMPLE_B:

      SUCC1_OFFS  = 0;
      SUCC2_OFFS  = 0;
      BOFF_OFFS   = FLAGS_OFFS+CHARSIZE;
      I_FREQ_OFFS = BOFF_OFFS+INTSIZE;
      L_FREQ_OFFS = CODESIZE;
      I_FREQ_NUM  = 1;
      L_FREQ_NUM  = 1;

      ttype=tt;
      break;

    case SHIFTBETA_I:
      SUCC1_OFFS = FLAGS_OFFS+CHARSIZE;
      SUCC2_OFFS = 0;
      BOFF_OFFS  = 0;
      I_FREQ_OFFS= SUCC1_OFFS+CODESIZE;
      L_FREQ_OFFS=CODESIZE;
      I_FREQ_NUM=1;
      L_FREQ_NUM=1;

      ttype=tt;
      break;

    case SHIFTBETA_B:

      SUCC1_OFFS  = FLAGS_OFFS+CHARSIZE;
      SUCC2_OFFS  = 0;
      BOFF_OFFS   = SUCC1_OFFS+CODESIZE;
      I_FREQ_OFFS = BOFF_OFFS+INTSIZE;
      L_FREQ_OFFS = CODESIZE;
      I_FREQ_NUM  = 1;
      L_FREQ_NUM  = 1;

      ttype=tt;
      break;

    case LEAFPROB:
    case FLEAFPROB:
      SUCC1_OFFS  = 0;
      SUCC2_OFFS  = 0;
      BOFF_OFFS   = 0;
      I_FREQ_OFFS = FLAGS_OFFS+CHARSIZE;
      I_FREQ_NUM  = 0;
      L_FREQ_NUM  = 1;

      ttype=tt;
      break;

    case LEAFPROB2:
      SUCC1_OFFS =0;
      SUCC2_OFFS =0;
      BOFF_OFFS  =0;
      I_FREQ_OFFS=FLAGS_OFFS+CHARSIZE;
      I_FREQ_NUM=0;
      L_FREQ_NUM=2;

      ttype=LEAFPROB;
      break;

    case LEAFPROB3:
      SUCC1_OFFS =0;
      SUCC2_OFFS =0;
      BOFF_OFFS  =0;
      I_FREQ_OFFS=FLAGS_OFFS+CHARSIZE;
      I_FREQ_NUM=0;
      L_FREQ_NUM=3;

      ttype=LEAFPROB;
      break;

    case LEAFPROB4:
      SUCC1_OFFS =0;
      SUCC2_OFFS =0;
      BOFF_OFFS  =0;
      I_FREQ_OFFS=FLAGS_OFFS+CHARSIZE;
      I_FREQ_NUM=0;
      L_FREQ_NUM=4;

      ttype=LEAFPROB;
      break;

    default:
      assert(tt==COUNT);
    }

    L_FREQ_OFFS=CODESIZE;
  }

  int inodesize(int s) {

    return I_FREQ_OFFS + I_FREQ_NUM * s;

  }

  int lnodesize(int s) {
    return L_FREQ_OFFS + L_FREQ_NUM * s;
  }

};


class ngramtable:tabletype
{

  node            tree; // ngram table root
  int           maxlev; // max storable n-gram
  NODETYPE   treeflags;
  char       info[100]; //information put in the header
  int       resolution; //max resolution for probabilities
  double         decay; //decay constant

  storage*         mem; //memory storage class

  int*          memory; // memory load per level
  int*       occupancy; // memory occupied per level
  long long*     mentr; // multiple entries per level
  long long       card; //entries at maxlev

  int              idx[MAX_NGRAM+1];

  int           oov_code,oov_size,du_code, bo_code; //used by prob;

  int             backoff_state; //used by prob;

public:

  int         corrcounts; //corrected counters flag

  dictionary     *dict; // dictionary

  // filtering dictionary:
  // if the first word of the ngram does not belong to filterdict
  // do not insert the ngram
  dictionary     *filterdict;

  ngramtable(char* filename,int maxl,char* is,
			 dictionary* extdict,
             char* filterdictfile,
             int googletable=0,
             int dstco=0,char* hmask=NULL,int inplen=0,
             TABLETYPE tt=FULL,int codesize=DEFCODESIZE);

  inline char* ngtype(char *str=NULL) {
    if (str!=NULL) strcpy(info,str);
    return info;
  }

  virtual ~ngramtable();

  inline void freetree() {
    freetree(tree);
  };
  void freetree(node nd);

  void resetngramtable() {
    //clean up all memory and restart from an empty table

    freetree(); //clean memory pool
    memset(tree,0,inodesize(6)); //reset tree
    //1-gram table initial flags

    if (maxlev>1) mtflags(tree,INODE | FREQ4);
    else if (maxlev==1) mtflags(tree,LNODE | FREQ4);

    word(tree,0);      //dummy word
    msucc(tree,0);     // number of different n-grams
    mtable(tree,NULL); // table of n-gram

    for (int i=1; i<=maxlev; i++)
      mentr[i]=memory[i]=occupancy[i]=0;

  }

  void stat(int level=4);

  inline long long totfreq(long long v=-1) {
    return (v==-1?freq(tree,INODE):freq(tree,INODE,v));
  }

  inline long long btotfreq(long long v=-1) {
    return (v==-1?getfreq(tree,treeflags,1):setfreq(tree,treeflags,v,1));
  }

  inline long long entries(int lev) {
    return mentr[lev];
  }

  int maxlevel() {
    return maxlev;
  }

  //  void savetxt(char *filename,int sz=0);
  void savetxt(char *filename,int sz=0,int googleformat=0);
  void loadtxt(char *filename,int googletable=0);


  void savebin(char *filename,int sz=0);
  void savebin(mfstream& out);
  void savebin(mfstream& out,node nd,NODETYPE ndt,int lev,int mlev);

  void loadbin(const char *filename);
  void loadbin(mfstream& inp);
  void loadbin(mfstream& inp,node nd,NODETYPE ndt,int lev);

  void loadbinold(char *filename);
  void loadbinold(mfstream& inp,node nd,NODETYPE ndt,int lev);

  void generate(char *filename,dictionary *extdict=NULL);
  void generate_dstco(char *filename,int dstco);
  void generate_hmask(char *filename,char* hmask,int inplen=0);

  void augment(ngramtable* ngt);

  int scan(ngram& ng,ACTION action=CONT,int maxlev=-1) {
    return scan(tree,INODE,0,ng,action,maxlev);
  }

  int succscan(ngram& h,ngram& ng,ACTION action,int lev) {
    //return scan(h.link,h.info,h.lev,ng,action,lev);
    return scan(h.link,h.info,lev-1,ng,action,lev);
  }

  double prob(ngram ng);

  int scan(node nd,NODETYPE ndt,int lev,ngram& ng,ACTION action=CONT,int maxl=-1);

  void show();

  void *search(table *tb,NODETYPE ndt,int lev,int n,int sz,int *w,
               ACTION action,char **found=(char **)NULL);

  int mybsearch(char *ar, int n, int size, unsigned char *key, int *idx);

  int put(ngram& ng);
  int put(ngram& ng,node nd,NODETYPE ndt,int lev);

  inline int get(ngram& ng) {
    return get(ng,maxlev,maxlev);
  }
  virtual int get(ngram& ng,int n,int lev);

  int comptbsize(int n);
  table *grow(table *tb,NODETYPE ndt,int lev,int n,int sz,NODETYPE oldndt=0);


  bool check_dictsize_bound();


  inline int putmem(char* ptr,int value,int offs,int size) {
    assert(ptr!=NULL);
    for (int i=0; i<size; i++)
      ptr[offs+i]=(value >> (8 * i)) & 0xff;
    return value;
  }

  inline int getmem(char* ptr,int* value,int offs,int size) {
    assert(ptr!=NULL);
    *value=ptr[offs] & 0xff;
    for (int i=1; i<size; i++)
      *value= *value | ( ( ptr[offs+i] & 0xff ) << (8 *i));
    return *value;
  }

  inline long putmem(char* ptr,long long value,int offs,int size) {
    assert(ptr!=NULL);
    for (int i=0; i<size; i++)
      ptr[offs+i]=(value >> (8 * i)) & 0xffLL;
    return value;
  }

  inline long getmem(char* ptr,long long* value,int offs,int size) {
    assert(ptr!=NULL);
    *value=ptr[offs] & 0xff;
    for (int i=1; i<size; i++)
      *value= *value | ( ( ptr[offs+i] & 0xffLL ) << (8 *i));
    return *value;
  }

  inline void tb2ngcpy(int* wordp,char* tablep,int n=1) {
    for (int i=0; i<n; i++)
      getmem(tablep,&wordp[i],i*CODESIZE,CODESIZE);
  }

  inline void ng2tbcpy(char* tablep,int* wordp,int n=1) {
    for (int i=0; i<n; i++)
      putmem(tablep,wordp[i],i*CODESIZE,CODESIZE);
  }

  inline int ngtbcmp(int* wordp,char* tablep,int n=1) {
    int word;
    for (int i=0; i<n; i++) {
      getmem(tablep,&word,i*CODESIZE,CODESIZE);
      if (wordp[i]!=word) return 1;
    }
    return 0;
  }

  inline int word(node nd,int value) {
    putmem(nd,value,WORD_OFFS,CODESIZE);
    return value;
  }

  inline int word(node nd) {
    int v;
    getmem(nd,&v,WORD_OFFS,CODESIZE);
    return v;
  }

  unsigned char mtflags(node nd,unsigned char value) {
    return *(unsigned char *)(nd+FLAGS_OFFS)=value;
  }

  unsigned char mtflags(node nd) {
    return *(unsigned char *)(nd+FLAGS_OFFS);
  }

  int codecmp(char * a,char *b) {
    register int i,result;
    for (i=(CODESIZE-1); i>=0; i--) {
      result=(unsigned char)a[i]-(unsigned char)b[i];
      if(result) return result;
    }
    return 0;
  };

  int codediff(node a,node b) {
    return word(a)-word(b);
  };


  int update(ngram ng) {

    if (!get(ng,ng.size,ng.size)) {
      cerr << "cannot find " << ng << "\n";
      exit (1);
    }

    freq(ng.link,ng.pinfo,ng.freq);

    return 1;
  }

  long long freq(node nd,NODETYPE ndt,long long value) {
    int offs=(ndt & LNODE)?L_FREQ_OFFS:I_FREQ_OFFS;

    if (ndt & FREQ1)
      putmem(nd,value,offs,1);
    else if (ndt & FREQ2)
      putmem(nd,value,offs,2);
    else if (ndt & FREQ3)
      putmem(nd,value,offs,3);
    else if (ndt & FREQ4)
      putmem(nd,value,offs,4);
    else
      putmem(nd,value,offs,6);
    return value;
  }

  long long freq(node nd,NODETYPE ndt) {
    int offs=(ndt & LNODE)?L_FREQ_OFFS:I_FREQ_OFFS;
    long long value;

    if (ndt & FREQ1)
      getmem(nd,&value,offs,1);
    else if (ndt & FREQ2)
      getmem(nd,&value,offs,2);
    else if (ndt & FREQ3)
      getmem(nd,&value,offs,3);
    else if (ndt & FREQ4)
      getmem(nd,&value,offs,4);
    else
      getmem(nd,&value,offs,6);

    return value;
  }


  long long setfreq(node nd,NODETYPE ndt,long long value,int index=0) {
    int offs=(ndt & LNODE)?L_FREQ_OFFS:I_FREQ_OFFS;

    if (ndt & FREQ1)
      putmem(nd,value,offs+index * 1,1);
    else if (ndt & FREQ2)
      putmem(nd,value,offs+index * 2,2);
    else if (ndt & FREQ3)
      putmem(nd,value,offs+index * 3,3);
    else if (ndt & FREQ4)
      putmem(nd,value,offs+index * 4,4);
    else
      putmem(nd,value,offs+index * 6,6);

    return value;
  }

  long long getfreq(node nd,NODETYPE ndt,int index=0) {
    int offs=(ndt & LNODE)?L_FREQ_OFFS:I_FREQ_OFFS;

    long long value;

    if (ndt & FREQ1)
      getmem(nd,&value,offs+ index * 1,1);
    else if (ndt & FREQ2)
      getmem(nd,&value,offs+ index * 2,2);
    else if (ndt & FREQ3)
      getmem(nd,&value,offs+ index * 3,3);
    else if (ndt & FREQ4)
      getmem(nd,&value,offs+ index * 4,4);
    else
      getmem(nd,&value,offs+ index * 6,6);

    return value;
  }


  double boff(node nd) {
    int value=0;
    getmem(nd,&value,BOFF_OFFS,INTSIZE);

    return double (value/(double)1000000000.0);
  }


  double myround(double x) {
    long int i=(long int)(x);
    return (x-i)>0.500?i+1.0:(double)i;
  }

  int boff(node nd,double value) {
    int v=(int)myround(value * 1000000000.0);
    putmem(nd,v,BOFF_OFFS,INTSIZE);

    return 1;
  }

  int succ2(node nd,int value) {
    putmem(nd,value,SUCC2_OFFS,CODESIZE);
    return value;
  }

  int succ2(node nd) {
    int value=0;
    getmem(nd,&value,SUCC2_OFFS,CODESIZE);
    return value;
  }

  int succ1(node nd,int value) {
    putmem(nd,value,SUCC1_OFFS,CODESIZE);
    return value;
  }

  int succ1(node nd) {
    int value=0;
    getmem(nd,&value,SUCC1_OFFS,CODESIZE);
    return value;
  }

  int msucc(node nd,int value) {
    putmem(nd,value,MSUCC_OFFS,CODESIZE);
    return value;
  }

  int msucc(node nd) {
    int value;
    getmem(nd,&value,MSUCC_OFFS,CODESIZE);
    return value;
  }

  table mtable(node nd) {
    table t;
    char *v=(char *)&t;
    for (int i=0; i<PTRSIZE; i++)
      v[i]=nd[MTAB_OFFS+i];

    return t;
  }

  table mtable(node nd,table value) {
    char *v=(char *)&value;
    for (int i=0; i<PTRSIZE; i++)
      nd[MTAB_OFFS+i]=v[i];
    return value;
  }

  int mtablesz(node nd) {
    if (mtflags(nd) & LNODE) {
      if (mtflags(nd) & FREQ1)
        return lnodesize(1);
      else if (mtflags(nd) & FREQ2)
        return lnodesize(2);
      else if (mtflags(nd) & FREQ3)
        return lnodesize(3);
      else if (mtflags(nd) & FREQ4)
        return lnodesize(4);
      else
        return lnodesize(6);
    } else if (mtflags(nd) & INODE) {
      if (mtflags(nd) & FREQ1)
        return inodesize(1);
      else if (mtflags(nd) & FREQ2)
        return inodesize(2);
      else if (mtflags(nd) & FREQ3)
        return inodesize(3);
      else if (mtflags(nd) & FREQ4)
        return inodesize(4);
      else
        return inodesize(6);
    } else {
      cerr << "node has wrong flags\n";
      exit(1);
    }
  }


  int bo_state(int value=-1) {
    return (value==-1?backoff_state:backoff_state=value);
  }


};

#endif