This commit is contained in:
2026-04-21 14:44:35 +02:00
parent 4d5dfbfef4
commit 6920dc9389
3 changed files with 45 additions and 9 deletions
-8
View File
@@ -157,11 +157,3 @@ def F32(X, Y):
x3*x4*y4 + x3*x4 + x3*y3 + x3*y4 + x4*y3*y4 + x4*y3 + x4 + y3*y4 + y3 + y4,
x4*x5*y5 + x4*y4*y5 + x4*y4 + x5*y4*y5 + x5 + y4 + y5 + 1,
]
step = 5
t = Tea3Model(step)
for i in range(step):
print("step "+str(i))
t.step()
print(pretty_print(t.R_bits[0][0]))