rogermt commited on
Commit
e5efc0a
·
verified ·
1 Parent(s): 01918a5

Add ITT physics engine: PhiField dual-field, ρ_q boundary charge, SigmaResidue, Fan Signatures, TransformationRule, FieldInvariants — 47/400 (11.8%)"

Browse files
Files changed (1) hide show
  1. itt_solver/itt_engine.py +20 -0
itt_solver/itt_engine.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ ITT Physics Engine for ARC-AGI
3
+ ==============================
4
+
5
+ Pure implementation of the Intent Tensor Theory solver, ported from
6
+ Sensei-Intent-Tensor/0.0_ARC_AGI (ITT_PURE_SOLVER.py v4).
7
+
8
+ Phases 1-7 of the ITT integration:
9
+ 1. PhiField dual-field (Φ_q + Φ̃)
10
+ 2. ρ_q boundary charge with physics-derived threshold
11
+ 3. SigmaResidue change typing
12
+ 4. Fan Signature 6-bit classifier
13
+ 5. TransformationRule.learn()
14
+ 6. FieldInvariants (spectral, harmonic, eigenspectrum, Fourier, frames)
15
+ 7. Rule apply methods (tile, self_tile, fill, multi_fill, period, shape, recolor)
16
+
17
+ References:
18
+ - https://github.com/Sensei-Intent-Tensor/0.0_ARC_AGI
19
+ - https://zenodo.org/records/18077258
20
+ """