mirror of
https://github.com/vale981/two_qubit_model
synced 2025-03-05 09:41:41 -05:00
use valid_sample_iterator
This commit is contained in:
parent
ca27d1a6d6
commit
2065b5be71
1 changed files with 3 additions and 3 deletions
|
@ -253,7 +253,7 @@ class Model(ABC):
|
|||
data.aux_states, # type: ignore
|
||||
self.hopsflow_system,
|
||||
N,
|
||||
(iter(data.rng_seed), self.hopsflow_therm(data.time[:])), # type: ignore
|
||||
(data.valid_sample_iterator(data.rng_seed), self.hopsflow_therm(data.time[:])), # type: ignore
|
||||
save=f"flow_{self.hexhash}",
|
||||
**kwargs,
|
||||
)
|
||||
|
@ -275,7 +275,7 @@ class Model(ABC):
|
|||
data.aux_states, # type: ignore
|
||||
self.hopsflow_system,
|
||||
N,
|
||||
(iter(data.rng_seed), self.hopsflow_therm(data.time[:])), # type: ignore
|
||||
(data.valid_sample_iterator(data.rng_seed), self.hopsflow_therm(data.time[:])), # type: ignore
|
||||
save=f"interaction_{self.hexhash}",
|
||||
**kwargs,
|
||||
)
|
||||
|
@ -298,7 +298,7 @@ class Model(ABC):
|
|||
data.aux_states, # type: ignore
|
||||
self.hopsflow_system,
|
||||
N,
|
||||
(iter(data.rng_seed), self.hopsflow_therm(data.time[:])), # type: ignore
|
||||
(data.valid_sample_iterator(data.rng_seed), self.hopsflow_therm(data.time[:])), # type: ignore
|
||||
save=f"flow_{self.hexhash}", # under the hood the flow is used
|
||||
**kwargs,
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue