From 1f2a62fe8db241582a2a8c57042e2dc48f0cc139 Mon Sep 17 00:00:00 2001 From: Corey Ostrove Date: Tue, 20 Feb 2024 21:37:58 -0700 Subject: [PATCH] StandardGST Bugfix I swear we had changed this to have the model copied, but for some reason that ended up reverted... --- pygsti/protocols/gst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygsti/protocols/gst.py b/pygsti/protocols/gst.py index 79f0b142f..c013fe641 100644 --- a/pygsti/protocols/gst.py +++ b/pygsti/protocols/gst.py @@ -1864,7 +1864,7 @@ def run(self, data, memlimit=None, comm=None, checkpoint=None, checkpoint_path=N #Try to interpret `mode` as a parameterization parameterization = mode # for now, 1-1 correspondence - initial_model = target_model + initial_model = target_model.copy() try: initial_model.set_all_parameterizations(parameterization)