|
33 | 33 | MdFlavor = Literal["vv_fire", "ase_fire"]
|
34 | 34 | vv_fire_key, ase_fire_key = get_args(MdFlavor)
|
35 | 35 |
|
36 |
| -md_atom_attributes = SimState._atom_attributes | {"forces", "velocities"} # noqa: SLF001 |
| 36 | +_md_atom_attributes = SimState._atom_attributes | {"forces", "velocities"} # noqa: SLF001 |
37 | 37 | _fire_system_attributes = (
|
38 | 38 | SimState._system_attributes # noqa: SLF001
|
39 | 39 | | DeformGradMixin._system_attributes # noqa: SLF001
|
@@ -524,7 +524,7 @@ class FireState(SimState):
|
524 | 524 | alpha: torch.Tensor
|
525 | 525 | n_pos: torch.Tensor
|
526 | 526 |
|
527 |
| - _atom_attributes = md_atom_attributes |
| 527 | + _atom_attributes = _md_atom_attributes |
528 | 528 | _system_attributes = (
|
529 | 529 | SimState._system_attributes # noqa: SLF001
|
530 | 530 | | {
|
@@ -745,7 +745,7 @@ class UnitCellFireState(SimState, DeformGradMixin):
|
745 | 745 | alpha: torch.Tensor
|
746 | 746 | n_pos: torch.Tensor
|
747 | 747 |
|
748 |
| - _atom_attributes = md_atom_attributes |
| 748 | + _atom_attributes = _md_atom_attributes |
749 | 749 | _system_attributes = _fire_system_attributes
|
750 | 750 | _global_attributes = _fire_global_attributes
|
751 | 751 |
|
@@ -1037,7 +1037,7 @@ class FrechetCellFIREState(SimState, DeformGradMixin):
|
1037 | 1037 | alpha: torch.Tensor
|
1038 | 1038 | n_pos: torch.Tensor
|
1039 | 1039 |
|
1040 |
| - _atom_attributes = md_atom_attributes |
| 1040 | + _atom_attributes = _md_atom_attributes |
1041 | 1041 | _system_attributes = _fire_system_attributes
|
1042 | 1042 | _global_attributes = _fire_global_attributes
|
1043 | 1043 |
|
|
0 commit comments