diff options
author | Thomas White <taw@physics.org> | 2023-01-16 15:00:16 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2023-01-16 15:08:30 +0100 |
commit | 3a7c6ffeb2a9e9be0eae98e198274685fa50ef0c (patch) | |
tree | 843629295858109cce7856b6d2071f000949dc17 | |
parent | 2f097fb86bcde6420d23988885f4c23776a934b7 (diff) |
partial_sim: Add missing initialisation of qargs.dtempl
-rw-r--r-- | src/partial_sim.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/partial_sim.c b/src/partial_sim.c index d934e9f4..5d8042c5 100644 --- a/src/partial_sim.c +++ b/src/partial_sim.c @@ -923,6 +923,7 @@ int main(int argc, char *argv[]) qargs.n_done = 0; qargs.n_started = 0; qargs.sym = sym; + qargs.dtempl = dtempl; qargs.random_intensities = random_intensities; qargs.cell = cell; qargs.stream = stream; |