We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de1fa43 commit f83fbe0Copy full SHA for f83fbe0
dev_tools/docs/build_api_docs.py
@@ -95,6 +95,11 @@ def generate_cirq():
95
site_path=FLAGS.site_path,
96
callbacks=[public_api.local_definitions_filter, filter_unwanted_inherited_methods],
97
extra_docs=_doc.RECORDED_CONST_DOCS,
98
+ private_map={
99
+ # Opt to not build docs for these paths for now since they error.
100
+ "cirq.experiments": ["CrossEntropyResultDict", "GridInteractionLayer"],
101
+ "cirq.experiments.random_quantum_circuit_generation": ["GridInteractionLayer"],
102
+ },
103
)
104
doc_controls.decorate_all_class_attributes(
105
doc_controls.do_not_doc_inheritable, networkx.DiGraph, skip=[]
0 commit comments