|
16 | 16 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
17 | 17 |
|
18 | 18 |
|
19 | | -(defun (precompile-processing---standard-hypothesis) (* PEEK_AT_SCENARIO |
20 | | - (scenario-shorthand---PRC---sum))) |
| 19 | +(defun (precompile-processing---standard-hypothesis) (* PEEK_AT_SCENARIO (scenario-shorthand---PRC---sum))) |
21 | 20 |
|
22 | 21 |
|
23 | | -(defconstraint precompile-processing---admissible-failure-scenarios (:guard (precompile-processing---standard-hypothesis)) |
| 22 | +(defconstraint precompile-processing---admissible-failure-scenarios |
| 23 | + (:guard (precompile-processing---standard-hypothesis)) |
| 24 | + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
24 | 25 | (begin |
25 | 26 | (if-not-zero (scenario-shorthand---PRC---may-only-fail-in-the-HUB) (vanishes! scenario/PRC_FAILURE_KNOWN_TO_RAM)) |
26 | 27 | (if-not-zero (scenario-shorthand---PRC---may-only-fail-in-the-RAM) (vanishes! scenario/PRC_FAILURE_KNOWN_TO_HUB)) |
27 | 28 | )) |
28 | 29 |
|
29 | | -(defconstraint precompile-processing---setting-GAS_NEXT (:guard (precompile-processing---standard-hypothesis)) |
| 30 | +(defconstraint precompile-processing---setting-GAS_NEXT |
| 31 | + (:guard (precompile-processing---standard-hypothesis)) |
| 32 | + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
30 | 33 | (begin |
31 | 34 | (eq! GAS_NEXT (+ (precompile-processing---dup-caller-gas) |
32 | 35 | (precompile-processing---prd-return-gas))) |
33 | 36 | (if-not-zero (scenario-shorthand---PRC---failure) |
34 | 37 | (vanishes! (precompile-processing---prd-return-gas))) |
35 | 38 | )) |
36 | 39 |
|
37 | | -(defconstraint precompile-processing---setting-NSR (:guard (precompile-processing---standard-hypothesis)) |
| 40 | +(defconstraint precompile-processing---setting-NSR |
| 41 | + (:guard (precompile-processing---standard-hypothesis)) |
| 42 | + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
38 | 43 | (eq! NON_STACK_ROWS |
39 | 44 | (+ (precompile-processing---1st-half-NSR) |
40 | 45 | (precompile-processing---2nd-half-NSR)) |
41 | 46 | )) |
42 | 47 |
|
43 | | -(defconstraint precompile-processing---setting-the-peeking-flags (:guard (precompile-processing---standard-hypothesis)) |
| 48 | +(defconstraint precompile-processing---setting-the-peeking-flags |
| 49 | + (:guard (precompile-processing---standard-hypothesis)) |
| 50 | + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
44 | 51 | (eq! (precompile-processing---2nd-half-flag-sum) |
45 | 52 | (precompile-processing---2nd-half-NSR) |
46 | 53 | )) |
0 commit comments