feat: rigorous physics revision for Paper 1 based on adversarial review

This commit is contained in:
codex
2026-06-01 22:22:35 +00:00
parent 2e839369d9
commit d8deafd138
5425 changed files with 1552613 additions and 43 deletions
@@ -0,0 +1,10 @@
import copy
from matplotlib.textpath import TextPath
def test_copy():
tp = TextPath((0, 0), ".")
assert copy.deepcopy(tp).vertices is not tp.vertices
assert (copy.deepcopy(tp).vertices == tp.vertices).all()
assert copy.copy(tp).vertices is tp.vertices