From 79b058eb928ae68a835ebc1403da1eb6624d2dfe Mon Sep 17 00:00:00 2001 From: Craig Gidney Date: Tue, 23 Jan 2024 16:15:43 -0800 Subject: [PATCH] gate_data -> gates --- file_lists/benchmark_files | 2 +- file_lists/python_api_files | 2 +- file_lists/source_files_no_main | 2 +- file_lists/test_files | 2 +- glue/javascript/tableau.js.cc | 2 +- src/stim.h | 2 +- src/stim/circuit/circuit.cc | 2 +- src/stim/circuit/circuit.h | 2 +- src/stim/circuit/circuit_instruction.cc | 2 +- src/stim/circuit/circuit_instruction.pybind.cc | 2 +- src/stim/circuit/circuit_instruction.pybind.h | 2 +- src/stim/circuit/gate_decomposition.h | 2 +- src/stim/circuit/gate_target.h | 2 +- src/stim/cmd/command_help.cc | 2 +- src/stim/gates/gate_data_annotations.cc | 2 +- src/stim/gates/gate_data_blocks.cc | 2 +- src/stim/gates/gate_data_collapsing.cc | 2 +- src/stim/gates/gate_data_controlled.cc | 2 +- src/stim/gates/gate_data_hada.cc | 2 +- src/stim/gates/gate_data_heralded.cc | 2 +- src/stim/gates/gate_data_noisy.cc | 2 +- src/stim/gates/gate_data_pair_measure.cc | 2 +- src/stim/gates/gate_data_pauli.cc | 2 +- src/stim/gates/gate_data_period_3.cc | 2 +- src/stim/gates/gate_data_period_4.cc | 2 +- src/stim/gates/gate_data_pp.cc | 2 +- src/stim/gates/gate_data_swaps.cc | 2 +- src/stim/gates/{gate_data.cc => gates.cc} | 2 +- src/stim/gates/{gate_data.h => gates.h} | 0 src/stim/gates/{gate_data.perf.cc => gates.perf.cc} | 2 +- src/stim/gates/{gate_data.pybind.cc => gates.pybind.cc} | 6 ++---- src/stim/gates/{gate_data.pybind.h => gates.pybind.h} | 2 +- src/stim/gates/{gate_data.test.cc => gates.test.cc} | 2 +- src/stim/gates/{gate_data_test.py => gates_test.py} | 0 src/stim/py/stim.pybind.cc | 2 +- src/stim/simulators/matched_error.pybind.cc | 2 +- src/stim/simulators/measurements_to_detection_events.inl | 2 +- src/stim/simulators/tableau_simulator.inl | 2 +- src/stim/simulators/vector_simulator.cc | 2 +- src/stim/simulators/vector_simulator.test.cc | 2 +- src/stim/stabilizers/tableau.inl | 2 +- src/stim/stabilizers/tableau.test.cc | 2 +- 42 files changed, 41 insertions(+), 43 deletions(-) rename src/stim/gates/{gate_data.cc => gates.cc} (99%) rename src/stim/gates/{gate_data.h => gates.h} (100%) rename src/stim/gates/{gate_data.perf.cc => gates.perf.cc} (97%) rename src/stim/gates/{gate_data.pybind.cc => gates.pybind.cc} (99%) rename src/stim/gates/{gate_data.pybind.h => gates.pybind.h} (96%) rename src/stim/gates/{gate_data.test.cc => gates.test.cc} (99%) rename src/stim/gates/{gate_data_test.py => gates_test.py} (100%) diff --git a/file_lists/benchmark_files b/file_lists/benchmark_files index b344e9ac5..3e16d7f9d 100644 --- a/file_lists/benchmark_files +++ b/file_lists/benchmark_files @@ -1,7 +1,7 @@ src/stim/benchmark_main.perf.cc src/stim/benchmark_util.perf.cc src/stim/circuit/circuit.perf.cc -src/stim/gates/gate_data.perf.cc +src/stim/gates/gates.perf.cc src/stim/io/measure_record_reader.perf.cc src/stim/main_namespaced.perf.cc src/stim/mem/simd_bit_table.perf.cc diff --git a/file_lists/python_api_files b/file_lists/python_api_files index ef239494b..25a80a28d 100644 --- a/file_lists/python_api_files +++ b/file_lists/python_api_files @@ -7,7 +7,7 @@ src/stim/dem/detector_error_model.pybind.cc src/stim/dem/detector_error_model_instruction.pybind.cc src/stim/dem/detector_error_model_repeat_block.pybind.cc src/stim/dem/detector_error_model_target.pybind.cc -src/stim/gates/gate_data.pybind.cc +src/stim/gates/gates.pybind.cc src/stim/io/read_write.pybind.cc src/stim/py/base.pybind.cc src/stim/py/compiled_detector_sampler.pybind.cc diff --git a/file_lists/source_files_no_main b/file_lists/source_files_no_main index b6920c5b6..b9694b6e5 100644 --- a/file_lists/source_files_no_main +++ b/file_lists/source_files_no_main @@ -37,7 +37,6 @@ src/stim/diagram/lattice_map.cc src/stim/diagram/timeline/timeline_3d_drawer.cc src/stim/diagram/timeline/timeline_ascii_drawer.cc src/stim/diagram/timeline/timeline_svg_drawer.cc -src/stim/gates/gate_data.cc src/stim/gates/gate_data_annotations.cc src/stim/gates/gate_data_blocks.cc src/stim/gates/gate_data_collapsing.cc @@ -51,6 +50,7 @@ src/stim/gates/gate_data_period_3.cc src/stim/gates/gate_data_period_4.cc src/stim/gates/gate_data_pp.cc src/stim/gates/gate_data_swaps.cc +src/stim/gates/gates.cc src/stim/gen/circuit_gen_params.cc src/stim/gen/gen_color_code.cc src/stim/gen/gen_rep_code.cc diff --git a/file_lists/test_files b/file_lists/test_files index 470f8cf4a..4b8d1d6ee 100644 --- a/file_lists/test_files +++ b/file_lists/test_files @@ -25,7 +25,7 @@ src/stim/diagram/json_obj.test.cc src/stim/diagram/timeline/timeline_3d_drawer.test.cc src/stim/diagram/timeline/timeline_ascii_drawer.test.cc src/stim/diagram/timeline/timeline_svg_drawer.test.cc -src/stim/gates/gate_data.test.cc +src/stim/gates/gates.test.cc src/stim/gen/circuit_gen_params.test.cc src/stim/gen/gen_color_code.test.cc src/stim/gen/gen_rep_code.test.cc diff --git a/glue/javascript/tableau.js.cc b/glue/javascript/tableau.js.cc index bee9b94dc..920d7079c 100644 --- a/glue/javascript/tableau.js.cc +++ b/glue/javascript/tableau.js.cc @@ -3,7 +3,7 @@ #include #include "common.js.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim.h b/src/stim.h index 4c4154a3f..c2777add7 100644 --- a/src/stim.h +++ b/src/stim.h @@ -43,7 +43,7 @@ #include "stim/diagram/timeline/timeline_3d_drawer.h" #include "stim/diagram/timeline/timeline_ascii_drawer.h" #include "stim/diagram/timeline/timeline_svg_drawer.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/gen/circuit_gen_params.h" #include "stim/gen/gen_color_code.h" #include "stim/gen/gen_rep_code.h" diff --git a/src/stim/circuit/circuit.cc b/src/stim/circuit/circuit.cc index 105537fde..fd8348ac4 100644 --- a/src/stim/circuit/circuit.cc +++ b/src/stim/circuit/circuit.cc @@ -19,7 +19,7 @@ #include #include "stim/circuit/gate_target.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/str_util.h" using namespace stim; diff --git a/src/stim/circuit/circuit.h b/src/stim/circuit/circuit.h index 7b8793fe7..bb9fd3c3c 100644 --- a/src/stim/circuit/circuit.h +++ b/src/stim/circuit/circuit.h @@ -29,7 +29,7 @@ #include "stim/circuit/circuit_instruction.h" #include "stim/circuit/gate_target.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/mem/monotonic_buffer.h" #include "stim/mem/span_ref.h" diff --git a/src/stim/circuit/circuit_instruction.cc b/src/stim/circuit/circuit_instruction.cc index c0d842802..d7c327ae7 100644 --- a/src/stim/circuit/circuit_instruction.cc +++ b/src/stim/circuit/circuit_instruction.cc @@ -18,7 +18,7 @@ #include "stim/circuit/circuit.h" #include "stim/circuit/gate_target.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/circuit/circuit_instruction.pybind.cc b/src/stim/circuit/circuit_instruction.pybind.cc index 124405894..c29700ed6 100644 --- a/src/stim/circuit/circuit_instruction.pybind.cc +++ b/src/stim/circuit/circuit_instruction.pybind.cc @@ -15,7 +15,7 @@ #include "stim/circuit/circuit_instruction.pybind.h" #include "stim/circuit/gate_target.pybind.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/py/base.pybind.h" #include "stim/str_util.h" diff --git a/src/stim/circuit/circuit_instruction.pybind.h b/src/stim/circuit/circuit_instruction.pybind.h index afe17a2d1..48873543b 100644 --- a/src/stim/circuit/circuit_instruction.pybind.h +++ b/src/stim/circuit/circuit_instruction.pybind.h @@ -19,7 +19,7 @@ #include "stim/circuit/circuit_instruction.h" #include "stim/circuit/gate_target.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" namespace stim_pybind { diff --git a/src/stim/circuit/gate_decomposition.h b/src/stim/circuit/gate_decomposition.h index 7370ec4fe..5cbcd505c 100644 --- a/src/stim/circuit/gate_decomposition.h +++ b/src/stim/circuit/gate_decomposition.h @@ -21,7 +21,7 @@ #include "stim/circuit/circuit_instruction.h" #include "stim/circuit/gate_target.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/mem/simd_bits.h" namespace stim { diff --git a/src/stim/circuit/gate_target.h b/src/stim/circuit/gate_target.h index d2fb32bd6..fa964a386 100644 --- a/src/stim/circuit/gate_target.h +++ b/src/stim/circuit/gate_target.h @@ -19,7 +19,7 @@ #include -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/mem/span_ref.h" namespace stim { diff --git a/src/stim/cmd/command_help.cc b/src/stim/cmd/command_help.cc index 02054ab35..909bb6965 100644 --- a/src/stim/cmd/command_help.cc +++ b/src/stim/cmd/command_help.cc @@ -33,7 +33,7 @@ #include "stim/arg_parse.h" #include "stim/circuit/stabilizer_flow.h" #include "stim/cmd/command_analyze_errors.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/io/stim_data_formats.h" #include "stim/stabilizers/tableau.h" diff --git a/src/stim/gates/gate_data_annotations.cc b/src/stim/gates/gate_data_annotations.cc index edc0d4684..ec533521e 100644 --- a/src/stim/gates/gate_data_annotations.cc +++ b/src/stim/gates/gate_data_annotations.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_blocks.cc b/src/stim/gates/gate_data_blocks.cc index aa072d3a1..d48062c8f 100644 --- a/src/stim/gates/gate_data_blocks.cc +++ b/src/stim/gates/gate_data_blocks.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_collapsing.cc b/src/stim/gates/gate_data_collapsing.cc index 22f49bb7b..8b5e04f2c 100644 --- a/src/stim/gates/gate_data_collapsing.cc +++ b/src/stim/gates/gate_data_collapsing.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_controlled.cc b/src/stim/gates/gate_data_controlled.cc index 6c363e92d..49ba28f83 100644 --- a/src/stim/gates/gate_data_controlled.cc +++ b/src/stim/gates/gate_data_controlled.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_hada.cc b/src/stim/gates/gate_data_hada.cc index 48e9791a5..419cc9b4d 100644 --- a/src/stim/gates/gate_data_hada.cc +++ b/src/stim/gates/gate_data_hada.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_heralded.cc b/src/stim/gates/gate_data_heralded.cc index 0325132fe..45515bb58 100644 --- a/src/stim/gates/gate_data_heralded.cc +++ b/src/stim/gates/gate_data_heralded.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_noisy.cc b/src/stim/gates/gate_data_noisy.cc index f75f83096..e58b370f4 100644 --- a/src/stim/gates/gate_data_noisy.cc +++ b/src/stim/gates/gate_data_noisy.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_pair_measure.cc b/src/stim/gates/gate_data_pair_measure.cc index 7643ee48d..55472c2a7 100644 --- a/src/stim/gates/gate_data_pair_measure.cc +++ b/src/stim/gates/gate_data_pair_measure.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_pauli.cc b/src/stim/gates/gate_data_pauli.cc index 993a7905d..a00bdb739 100644 --- a/src/stim/gates/gate_data_pauli.cc +++ b/src/stim/gates/gate_data_pauli.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_period_3.cc b/src/stim/gates/gate_data_period_3.cc index dbcc0d20e..fc77b4668 100644 --- a/src/stim/gates/gate_data_period_3.cc +++ b/src/stim/gates/gate_data_period_3.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_period_4.cc b/src/stim/gates/gate_data_period_4.cc index bb690efaa..585246688 100644 --- a/src/stim/gates/gate_data_period_4.cc +++ b/src/stim/gates/gate_data_period_4.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_pp.cc b/src/stim/gates/gate_data_pp.cc index 787968af0..cab1c9935 100644 --- a/src/stim/gates/gate_data_pp.cc +++ b/src/stim/gates/gate_data_pp.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data_swaps.cc b/src/stim/gates/gate_data_swaps.cc index 9694a4531..62cbcc29e 100644 --- a/src/stim/gates/gate_data_swaps.cc +++ b/src/stim/gates/gate_data_swaps.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data.cc b/src/stim/gates/gates.cc similarity index 99% rename from src/stim/gates/gate_data.cc rename to src/stim/gates/gates.cc index d4b0d231b..089b753a8 100644 --- a/src/stim/gates/gate_data.cc +++ b/src/stim/gates/gates.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" using namespace stim; diff --git a/src/stim/gates/gate_data.h b/src/stim/gates/gates.h similarity index 100% rename from src/stim/gates/gate_data.h rename to src/stim/gates/gates.h diff --git a/src/stim/gates/gate_data.perf.cc b/src/stim/gates/gates.perf.cc similarity index 97% rename from src/stim/gates/gate_data.perf.cc rename to src/stim/gates/gates.perf.cc index 955e81baa..27e411ec4 100644 --- a/src/stim/gates/gate_data.perf.cc +++ b/src/stim/gates/gates.perf.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include diff --git a/src/stim/gates/gate_data.pybind.cc b/src/stim/gates/gates.pybind.cc similarity index 99% rename from src/stim/gates/gate_data.pybind.cc rename to src/stim/gates/gates.pybind.cc index 83dc0fa33..a70b60de7 100644 --- a/src/stim/gates/gate_data.pybind.cc +++ b/src/stim/gates/gates.pybind.cc @@ -12,13 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/circuit/gate_data.pybind.h" +#include "stim/gates/gates.h" #include "stim/circuit/stabilizer_flow.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.pybind.h" #include "stim/py/base.pybind.h" -#include "stim/stabilizers/pauli_string.pybind.h" -#include "stim/stabilizers/tableau.pybind.h" #include "stim/str_util.h" using namespace stim; diff --git a/src/stim/gates/gate_data.pybind.h b/src/stim/gates/gates.pybind.h similarity index 96% rename from src/stim/gates/gate_data.pybind.h rename to src/stim/gates/gates.pybind.h index 1b5e77904..021668bab 100644 --- a/src/stim/gates/gate_data.pybind.h +++ b/src/stim/gates/gates.pybind.h @@ -17,7 +17,7 @@ #include -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" namespace stim_pybind { diff --git a/src/stim/gates/gate_data.test.cc b/src/stim/gates/gates.test.cc similarity index 99% rename from src/stim/gates/gate_data.test.cc rename to src/stim/gates/gates.test.cc index 1f6fa2358..cf5ed6e8a 100644 --- a/src/stim/gates/gate_data.test.cc +++ b/src/stim/gates/gates.test.cc @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "gtest/gtest.h" diff --git a/src/stim/gates/gate_data_test.py b/src/stim/gates/gates_test.py similarity index 100% rename from src/stim/gates/gate_data_test.py rename to src/stim/gates/gates_test.py diff --git a/src/stim/py/stim.pybind.cc b/src/stim/py/stim.pybind.cc index 159d172e2..0c34f7ff1 100644 --- a/src/stim/py/stim.pybind.cc +++ b/src/stim/py/stim.pybind.cc @@ -18,13 +18,13 @@ #include "stim/circuit/circuit.pybind.h" #include "stim/circuit/circuit_instruction.pybind.h" #include "stim/circuit/circuit_repeat_block.pybind.h" -#include "stim/circuit/gate_data.pybind.h" #include "stim/circuit/gate_target.pybind.h" #include "stim/cmd/command_diagram.pybind.h" #include "stim/dem/detector_error_model.pybind.h" #include "stim/dem/detector_error_model_instruction.pybind.h" #include "stim/dem/detector_error_model_repeat_block.pybind.h" #include "stim/dem/detector_error_model_target.pybind.h" +#include "stim/gates/gates.pybind.h" #include "stim/io/read_write.pybind.h" #include "stim/main_namespaced.h" #include "stim/py/base.pybind.h" diff --git a/src/stim/simulators/matched_error.pybind.cc b/src/stim/simulators/matched_error.pybind.cc index f03ace7d4..a5a3db382 100644 --- a/src/stim/simulators/matched_error.pybind.cc +++ b/src/stim/simulators/matched_error.pybind.cc @@ -17,7 +17,7 @@ #include "stim/circuit/gate_target.h" #include "stim/circuit/gate_target.pybind.h" #include "stim/dem/detector_error_model_target.pybind.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/py/base.pybind.h" #include "stim/simulators/matched_error.h" diff --git a/src/stim/simulators/measurements_to_detection_events.inl b/src/stim/simulators/measurements_to_detection_events.inl index 43d9d9125..77a652ef1 100644 --- a/src/stim/simulators/measurements_to_detection_events.inl +++ b/src/stim/simulators/measurements_to_detection_events.inl @@ -14,7 +14,7 @@ #include -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/io/measure_record_batch_writer.h" #include "stim/io/measure_record_reader.h" #include "stim/io/stim_data_formats.h" diff --git a/src/stim/simulators/tableau_simulator.inl b/src/stim/simulators/tableau_simulator.inl index 37fa41919..bde8290f0 100644 --- a/src/stim/simulators/tableau_simulator.inl +++ b/src/stim/simulators/tableau_simulator.inl @@ -15,7 +15,7 @@ #include #include "stim/circuit/gate_decomposition.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/probability_util.h" #include "stim/simulators/tableau_simulator.h" #include "stim/simulators/vector_simulator.h" diff --git a/src/stim/simulators/vector_simulator.cc b/src/stim/simulators/vector_simulator.cc index 8920c88c0..78ec9c184 100644 --- a/src/stim/simulators/vector_simulator.cc +++ b/src/stim/simulators/vector_simulator.cc @@ -16,7 +16,7 @@ #include -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/mem/simd_util.h" #include "stim/stabilizers/pauli_string.h" diff --git a/src/stim/simulators/vector_simulator.test.cc b/src/stim/simulators/vector_simulator.test.cc index 2cfc38e86..806d731e4 100644 --- a/src/stim/simulators/vector_simulator.test.cc +++ b/src/stim/simulators/vector_simulator.test.cc @@ -16,7 +16,7 @@ #include "gtest/gtest.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/mem/simd_word.test.h" #include "stim/stabilizers/pauli_string.h" diff --git a/src/stim/stabilizers/tableau.inl b/src/stim/stabilizers/tableau.inl index d3f9d1ed3..812500171 100644 --- a/src/stim/stabilizers/tableau.inl +++ b/src/stim/stabilizers/tableau.inl @@ -19,7 +19,7 @@ #include #include -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/simulators/vector_simulator.h" #include "stim/stabilizers/pauli_string.h" #include "stim/stabilizers/tableau.h" diff --git a/src/stim/stabilizers/tableau.test.cc b/src/stim/stabilizers/tableau.test.cc index 54fbf8fc2..416cc47fd 100644 --- a/src/stim/stabilizers/tableau.test.cc +++ b/src/stim/stabilizers/tableau.test.cc @@ -18,7 +18,7 @@ #include "gtest/gtest.h" -#include "stim/gates/gate_data.h" +#include "stim/gates/gates.h" #include "stim/mem/simd_word.test.h" #include "stim/simulators/vector_simulator.h" #include "stim/stabilizers/tableau_transposed_raii.h"