Commit 95e560a
akokoshn
Improve rename copy constraints
1 parent 4e1357a commit 95e560a
3 files changed
Lines changed: 33 additions & 39 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
116 | 109 | | |
117 | | - | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
118 | 115 | | |
119 | 116 | | |
120 | 117 | | |
| |||
203 | 200 | | |
204 | 201 | | |
205 | 202 | | |
206 | | - | |
207 | | - | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
208 | 206 | | |
209 | 207 | | |
210 | 208 | | |
| |||
269 | 267 | | |
270 | 268 | | |
271 | 269 | | |
272 | | - | |
273 | 270 | | |
274 | | - | |
275 | 271 | | |
276 | 272 | | |
277 | 273 | | |
278 | 274 | | |
279 | 275 | | |
280 | 276 | | |
281 | | - | |
| 277 | + | |
282 | 278 | | |
283 | 279 | | |
284 | 280 | | |
| |||
304 | 300 | | |
305 | 301 | | |
306 | 302 | | |
307 | | - | |
| 303 | + | |
308 | 304 | | |
309 | 305 | | |
310 | 306 | | |
| |||
323 | 319 | | |
324 | 320 | | |
325 | 321 | | |
326 | | - | |
| 322 | + | |
327 | 323 | | |
328 | | - | |
329 | | - | |
330 | | - | |
| 324 | + | |
331 | 325 | | |
332 | 326 | | |
333 | 327 | | |
| |||
502 | 496 | | |
503 | 497 | | |
504 | 498 | | |
505 | | - | |
| 499 | + | |
506 | 500 | | |
507 | 501 | | |
508 | 502 | | |
| |||
531 | 525 | | |
532 | 526 | | |
533 | 527 | | |
534 | | - | |
| 528 | + | |
535 | 529 | | |
536 | 530 | | |
537 | 531 | | |
| |||
- include/nil/blueprint/blueprint/plonk/assignment_proxy.hpp+25-20
- include/nil/blueprint/components/algebra/fields/plonk/addition.hpp+26
- include/nil/blueprint/components/algebra/fields/plonk/division.hpp+26
- include/nil/blueprint/components/algebra/fields/plonk/division_or_zero.hpp+25
- include/nil/blueprint/components/algebra/fields/plonk/logic_and_flag.hpp+43
- include/nil/blueprint/components/algebra/fields/plonk/logic_or_flag.hpp+45
- include/nil/blueprint/components/algebra/fields/plonk/multiplication.hpp+27
- include/nil/blueprint/components/algebra/fields/plonk/multiplication_by_constant.hpp+24
- include/nil/blueprint/components/algebra/fields/plonk/non_native/addition.hpp+105
- include/nil/blueprint/components/algebra/fields/plonk/non_native/bit_composition.hpp+52
- include/nil/blueprint/components/algebra/fields/plonk/non_native/bit_decomposition.hpp+58
- include/nil/blueprint/components/algebra/fields/plonk/non_native/comparison_flag.hpp+148-4
- include/nil/blueprint/components/algebra/fields/plonk/non_native/detail/bit_builder_component.hpp+1-1
- include/nil/blueprint/components/algebra/fields/plonk/non_native/division_remainder.hpp+50
- include/nil/blueprint/components/algebra/fields/plonk/non_native/multiplication.hpp+130
- include/nil/blueprint/components/algebra/fields/plonk/non_native/subtraction.hpp+104
- include/nil/blueprint/components/algebra/fields/plonk/subtraction.hpp+26
- include/nil/blueprint/components/hashes/sha2/plonk/decomposition.hpp+66
- include/nil/blueprint/components/hashes/sha2/plonk/sha256.hpp+81-5
- include/nil/blueprint/components/hashes/sha2/plonk/sha256_process.hpp+319
- test/algebra/fields/plonk/field_operations.cpp+6
- test/algebra/fields/plonk/logic_and_flag.cpp+2
- test/algebra/fields/plonk/logic_or_flag.cpp+2
- test/algebra/fields/plonk/non_native/addition.cpp+2
- test/algebra/fields/plonk/non_native/bit_composition.cpp+3
- test/algebra/fields/plonk/non_native/bit_decomposition.cpp+3
- test/algebra/fields/plonk/non_native/comparison_flag.cpp+3
- test/algebra/fields/plonk/non_native/division_remainder.cpp+3
- test/algebra/fields/plonk/non_native/multiplication.cpp+2
- test/algebra/fields/plonk/non_native/subtraction.cpp+2
- test/hashes/plonk/decomposition.cpp+16-8
- test/hashes/plonk/sha256.cpp+8-1
- test/hashes/plonk/sha256_process.cpp+13
- test/proxy.cpp+24-38
- test/test_plonk_component.hpp+90
0 commit comments