This repository was archived by the owner on Feb 17, 2025. It is now read-only.
Commit 80faa78 1 parent cc3b804 commit 80faa78 Copy full SHA for 80faa78
File tree 1 file changed +0
-6
lines changed
include/nil/blueprint/transpiler
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -106,11 +106,9 @@ namespace nil {
106
106
}
107
107
108
108
for (std::size_t i= 0 ; i < PlaceholderParams::total_columns; i++){
109
- std::cout << " i = " << i << std::endl;
110
109
std::size_t j = 0 ;
111
110
for (auto & rot: col_rotations[i]){
112
111
if (rot == 0 ){
113
- std::cout << " zero_index = " << j << std::endl;
114
112
zero_indices.push_back (j);
115
113
break ;
116
114
}
@@ -121,17 +119,13 @@ namespace nil {
121
119
std::size_t i = 0 ;
122
120
for (; i < PlaceholderParams::witness_columns + PlaceholderParams::public_input_columns; i++){
123
121
zero_indices[i] = (sum + zero_indices[i]) * 0x20 ;
124
- std::cout << " i = " << i << " offset = " << zero_indices[i] << std::endl;
125
- BOOST_ASSERT (zero_indices[i] < 0x10000 );
126
122
sum += col_rotations[i].size ();
127
123
result << std::hex << std::setfill (' 0' ) << std::setw (4 ) << zero_indices[i];
128
124
}
129
125
130
126
sum = 0 ;
131
127
for (; i < PlaceholderParams::total_columns; i++){
132
128
zero_indices[i] = (sum + zero_indices[i]) * 0x20 ;
133
- std::cout << " i = " << i << " offset = " << zero_indices[i] << std::endl;
134
- BOOST_ASSERT (zero_indices[i] < 0x10000 );
135
129
sum += col_rotations[i].size () + 1 ;
136
130
result << std::hex << std::setfill (' 0' ) << std::setw (4 ) << zero_indices[i];
137
131
}
You can’t perform that action at this time.
0 commit comments