We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83cf54a + f129006 commit 5b39cdfCopy full SHA for 5b39cdf
lambench/tasks/calculator/nve_md/nve_md.py
@@ -10,7 +10,6 @@
10
from ase.units import fs
11
import numpy as np
12
import time
13
-from typing import Optional
14
from lambench.tasks.calculator.nve_md.nve_md_data import TEST_DATA
15
import logging
16
@@ -20,7 +19,7 @@ def run_md_nve_simulation(
20
19
num_steps: int,
21
timestep: float,
22
temperature_K: int,
23
- test_data: Optional[list[Atoms]] = TEST_DATA,
+ test_data: list[Atoms] = TEST_DATA,
24
) -> dict[str, float]:
25
"""
26
This function runs NVE simulations for a list of test systems using the given model.
0 commit comments