P4C
The P4 Compiler
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
ltbitmatrix.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef LIB_LTBITMATRIX_H_
18#define LIB_LTBITMATRIX_H_
19
20#include "bitvec.h"
21
22/* A lower-triangular bit matrix, held in a bit vector */
23class LTBitMatrix : private bitvec {
24 public:
25 nonconst_bitref operator()(unsigned r, unsigned c) {
26 return r >= c ? bitvec::operator[]((r * r + r) / 2 + c) : end();
27 }
28 bool operator()(unsigned r, unsigned c) const {
29 return r >= c ? bitvec::operator[]((r * r + r) / 2 + c) : false;
30 }
31 unsigned size() const {
32 if (empty()) return 0;
33 unsigned m = *max();
34 unsigned r = 1;
35 while ((r * r + r) / 2 <= m) r++;
36 return r;
37 }
38 using bitvec::clear;
39 using bitvec::empty;
40 using bitvec::operator bool;
41
42 private:
43 template <class T>
44 class rowref {
45 friend class LTBitMatrix;
46 T &self;
47 unsigned row;
48 rowref(T &s, unsigned r) : self(s), row(r) {}
49
50 public:
51 rowref(const rowref &) = default;
52 rowref(rowref &&) = default;
53 explicit operator bool() const {
54 if (row < bits_per_unit)
55 return self.getrange((row * row + row) / 2, row + 1) != 0;
56 else
57 return self.getslice((row * row + row) / 2, row + 1) ? true : false;
58 }
59 operator bitvec() const { return self.getslice((row * row + row) / 2, row + 1); }
60 };
61 class nonconst_rowref : public rowref<LTBitMatrix> {
62 public:
63 friend class LTBitMatrix;
64 using rowref<LTBitMatrix>::rowref;
65 void operator|=(bitvec a) const {
66 for (size_t v : a) {
67 if (v > row) break;
68 self(row, v) = 1;
69 }
70 }
71 nonconst_bitref operator[](unsigned col) const { return self(row, col); }
72 };
73 class const_rowref : public rowref<const LTBitMatrix> {
74 public:
75 friend class LTBitMatrix;
76 using rowref<const LTBitMatrix>::rowref;
77 bool operator[](unsigned col) const { return self(row, col); }
78 };
79
80 public:
81 nonconst_rowref operator[](unsigned r) { return nonconst_rowref(*this, r); }
82 const_rowref operator[](unsigned r) const { return const_rowref(*this, r); }
83
84 bool operator==(const LTBitMatrix &a) const { return bitvec::operator==(a); }
85 bool operator!=(const LTBitMatrix &a) const { return bitvec::operator!=(a); }
86 friend bool operator>>(const char *p, LTBitMatrix &bm);
87};
88
89inline std::ostream &operator<<(std::ostream &out, const LTBitMatrix &bm) {
90 for (unsigned i = 1; i < bm.size(); i++) {
91 if (i > 1) out << ' ';
92 for (unsigned j = 0; j < i; j++) out << (bm[i][j] ? '1' : '0');
93 }
94 return out;
95}
96
97inline bool operator>>(const char *p, LTBitMatrix &bm) {
98 bitvec rv;
99 for (int i = 0; *p; ++p, ++i) switch (*p) {
100 case ' ':
101 --i;
102 break;
103 case '0':
104 break;
105 case '1':
106 rv[i] = 1;
107 break;
108 default:
109 return false;
110 }
111 bm.bitvec::operator=(rv);
112 return true;
113}
114
115#endif /* LIB_LTBITMATRIX_H_ */
Definition ltbitmatrix.h:23
Definition bitvec.h:174
Definition bitvec.h:119