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
/*
* ═══════════════════════════════════════════════════════════════════════════
* TECHNICAL MANIFEST: Spectral Folding Engine
* SOVEREIGN SPECTRAL ROLE: IOPP-based Hypercube Compaction
* ═══════════════════════════════════════════════════════════════════════════
*
* COMPLEXITY: O(n) per fold → O(n log n) total
* FIELD: Goldilocks (2^64 - 2^32 + 1) | Zero-cost reduction
* DOMAIN: Time Domain → Spectral Compaction
*
* ARCHITECTURAL INVARIANTS:
* - Each fold halves the vector size (succinctness)
* - Random α challenge ensures soundness via Schwartz-Zippel
* - No polynomial interpolation—pure spectral signal compression
*
* SECURITY PROPERTIES:
* - Proximity: Low-degree signals remain low-degree after folding
* - Binding: Merkle commitment locks values before challenge
* ═══════════════════════════════════════════════════════════════════════════
*/
use crateGoldilocks;
/// Spectral Folding Engine (FRI-compatible IOPP).
/// Implements hypercube compaction without polynomial interpolation.
;
// Backward compatibility alias (deprecated, will be removed in v2.0)
pub type SpectralFri = SpectralFolding;