Skip to content

Commit

Permalink
Expose NotEnoughSamplesError (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBoothroyd authored Nov 4, 2023
1 parent 732f2f0 commit 78092dd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion smee/mm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

from smee.mm._config import GenerateCoordsConfig, MinimizationConfig, SimulationConfig
from smee.mm._mm import generate_system_coords, simulate
from smee.mm._ops import compute_ensemble_averages, reweight_ensemble_averages
from smee.mm._ops import (
NotEnoughSamplesError,
compute_ensemble_averages,
reweight_ensemble_averages,
)
from smee.mm._reporters import TensorReporter, unpack_frames

__all__ = [
Expand All @@ -12,6 +16,7 @@
"simulate",
"GenerateCoordsConfig",
"MinimizationConfig",
"NotEnoughSamplesError",
"SimulationConfig",
"TensorReporter",
"unpack_frames",
Expand Down

0 comments on commit 78092dd

Please sign in to comment.