small name cleanup part 2

This commit is contained in:
queue-miscreant 2025-03-23 22:38:04 -05:00
parent 6fe3661888
commit 8f71b6d179
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
from goldberg.operators import goldberg_parameters_to_operations, verify_recipes from goldberg.operators import goldberg_parameters_to_operators, verify_recipes
dodecahedral_goldberg_recipes: dict[tuple[int, int], str] = { dodecahedral_goldberg_recipes: dict[tuple[int, int], str] = {
# Class I # Class I
@ -22,7 +22,7 @@ dodecahedral_goldberg_recipes: dict[tuple[int, int], str] = {
verify_recipes( verify_recipes(
{ {
param: " = ".join( param: " = ".join(
[op + "D" for op in goldberg_parameters_to_operations[param].split(" = ")] [op + "D" for op in goldberg_parameters_to_operators[param].split(" = ")]
) )
for param in dodecahedral_goldberg_recipes.keys() for param in dodecahedral_goldberg_recipes.keys()
}, },

View File

@ -1,9 +1,9 @@
from dataclasses import dataclass from dataclasses import dataclass
from goldberg.common import GoldbergOperator
from goldberg.operators import ( from goldberg.operators import (
GoldbergOperator,
goldberg_operators_to_parameters, goldberg_operators_to_parameters,
goldberg_parameters_to_operations, goldberg_parameters_to_operators,
verify_recipes, verify_recipes,
) )
@ -34,7 +34,7 @@ tetrahedral_goldberg_recipes = {
verify_recipes( verify_recipes(
{ {
param: " = ".join( param: " = ".join(
[op + "T" for op in goldberg_parameters_to_operations[param].split(" = ")] [op + "T" for op in goldberg_parameters_to_operators[param].split(" = ")]
) )
for param in tetrahedral_goldberg_recipes.keys() for param in tetrahedral_goldberg_recipes.keys()
}, },