chore: sync project state and current artifacts

This commit is contained in:
Sepehr
2026-02-22 23:27:31 +01:00
parent 1b6415776e
commit dd77089b22
232 changed files with 37056 additions and 4296 deletions

View File

@@ -0,0 +1,11 @@
import entropyk
system = entropyk.System()
def check(comp, n):
c = system.add_component(comp)
system.add_edge(c,c) # dummy
system.finalize()
eqs = system.graph.node_weight(c).n_equations()
print(f"{n}: {eqs}")
# Wait, no python API for n_equations... Let's just create a full rust test.