small name cleanup part 2
This commit is contained in:
parent
6fe3661888
commit
8f71b6d179
@ -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] = {
|
||||
# Class I
|
||||
@ -22,7 +22,7 @@ dodecahedral_goldberg_recipes: dict[tuple[int, int], str] = {
|
||||
verify_recipes(
|
||||
{
|
||||
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()
|
||||
},
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
from dataclasses import dataclass
|
||||
|
||||
from goldberg.common import GoldbergOperator
|
||||
from goldberg.operators import (
|
||||
GoldbergOperator,
|
||||
goldberg_operators_to_parameters,
|
||||
goldberg_parameters_to_operations,
|
||||
goldberg_parameters_to_operators,
|
||||
verify_recipes,
|
||||
)
|
||||
|
||||
@ -34,7 +34,7 @@ tetrahedral_goldberg_recipes = {
|
||||
verify_recipes(
|
||||
{
|
||||
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()
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user