Skip to content

Commit

Permalink
Factorize -> Optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
APN-Pucky committed Jun 1, 2024
1 parent 56ea02f commit e5f8297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions feynamp/form/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def compute_squared(
rs,
get_onshell(fds, fm) + get_mandelstamm(fds, fm),
)
print("len pre factorize", len(rr))
print("len pre Optimize", len(rr))
# TODO use #optimize from form
rr = apply_parallel_v3(
[rr],
Expand All @@ -100,10 +100,10 @@ def compute_squared(
print TMP;
.end
""",
desc="Factorize",
desc="Optimize",
)[0]
debug(f"{rr=}")
print("len post factorize", len(rr))
print("len post Optimize", sum([len(relem) for relem in rr]))

if drop_ms_prefix:
rr = [
Expand Down

0 comments on commit e5f8297

Please sign in to comment.