We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d55d0a8 commit 203d421Copy full SHA for 203d421
tests/matching/load_from_stim_test.py
@@ -78,3 +78,11 @@ def test_load_from_dem_without_stim_raises_type_error():
78
Matching.from_detector_error_model("test")
79
with pytest.raises(TypeError):
80
Matching.from_stim_circuit("test")
81
+
82
83
+def test_load_from_tagged_stim_circuit(data_dir: Path):
84
+ Matching.from_stim_circuit_file(data_dir / "tagged_circuit.stim")
85
86
87
+def test_load_from_tagged_detector_error_model(data_dir: Path):
88
+ Matching.from_detector_error_model_file(data_dir / "tagged_dem.dem")
0 commit comments