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.
1 parent 452b08d commit ae296f8Copy full SHA for ae296f8
src/bloqade/stim/dialects/noise/emit.py
@@ -97,6 +97,6 @@ def non_stim_corr_error(
97
+ " ".join(targets)
98
)
99
emit.correlated_error_count += 1
100
- emit.writeln(frame, res)
+ frame.write_line(res)
101
102
return ()
src/bloqade/stim/emit/stim_str.py
@@ -51,6 +51,7 @@ def initialize(self) -> "EmitStimMain":
51
super().initialize()
52
self.callables: IdTable[ir.Statement] = IdTable(prefix="fn_")
53
self.callable_to_emit: WorkList[ir.Statement] = WorkList()
54
+ self.correlated_error_count = self.correlation_identifier_offset
55
return self
56
57
def initialize_frame(
0 commit comments