QC
Functional quasi-quantum computing simulator on classical hardware using physics models as a backend.
File Explorer
- bug_report.md
- custom.md
- feature_request.md
- pull_request_template.md
- dependabot.yml
- pullrequest_template.md
- index.html
- Neural_Quantum_Constraint_Preservation eng.pdf
- Neural_Quantum_Constraint_Preservation.pdf
- atom_Li_orbital_1s_m0.png
- atom_Li_orbital_2s_m0.png
- bell_entangled_h_1s_2p.png
- bell_entangled_h_1s_2s.png
- bell_entangled_h_1s_2s_molecular.png
- bell_entangled_h_1s_2s_relativistic.png
- bell_state.png
- bell_state_data.npz
- bell_state_summary.png
- bell_state_visualization.png
- entangled_2p_y_2p_z_100000.png
- entangled_2p_z_2p_x_100000.png
- ghz_3q.png
- ghz_3q_data.npz
- ghz_3q_summary.png
- ghz_3q_visualization.png
- ghz_entangled_h_1s_2s_2p.png
- grover_3q_m5.png
- grover_3q_m5_data.npz
- grover_3q_m5_summary.png
- grover_3q_m5_visualization.png
- neo_cache.db
- orbital_3d_z2_100000.png
- qft_3q.png
- qft_3q_data.npz
- qft_3q_summary.png
- qft_3q_visualization.png
- README.md
- README.md
- github-actions-demo.yml
- .gitignore
- advanced_experiments.py
- app.py
- atom_Li_orbital_1s_m0.png
- atom_Li_orbital_2s_m0.png
- best_dirac.pth
- checkpoint_phase3_training_epoch_18921_20260224_154739.pth
- CODE_OF_CONDUCT.md
- constraint_preservation_paper.md
- CONTRIBUTING.md
- demo_molecular_vqe.py
- entangled_2p_y_2p_z_100000.png
- entangled_2p_z_2p_x_100000.png
- entangled_hydrogen.py
- hamiltonian.pth
- higgs_four_lepton_analysis.py
- higgs_quantum_analysis.py
- hydrogen.gif
- install.sh
- LICENSE
- molecular_sim.py
- my_circuit.qasm
- Neural_Quantum_Constraint_Preservation eng.pdf
- Neural_Quantum_Constraint_Preservation.pdf
- orbital_visualizer2.py
- polarizability_v3.py
- pull_request_template.md
- qc_dashboard.py
- qc_integration.py
- quantum_3dview.py
- quantum_computer.py
- quantum_dash.py
- quantum_framework_config.toml
- quantum_framework_core.py
- quantum_framework_main.py
- quantum_framework_menu.py
- quantum_framework_molecular.py
- quantum_framework_molecular_fixed.py
- quantum_framework_molecular_v2.py
- quantum_framework_physics.py
- quantum_framework_visualization.py
- quantum_lab.py
- quantum_simulator.py
- quantum_simulator_config.toml
- quantum_visualizer.py
- README.md
- relativistic_hydrogen.py
- requirements.txt
- RESULTS.md
- SECURITY.md
- test_qc_integration.py
- test_quantum_framework.py
- topological_hilbert_compression2.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
rich
View Details ▼
rich
A toolbox for fancy output in the terminal.
rich {{path/to/file.py}}
Display a file with syntax highlighting:
rich {{path/to/file.py}} --line-numbers --guides
Add line numbers, and indentation guides:
rich {{path/to/file.py}} --theme {{monokai}}
Apply a theme:
streamlit
View Details ▼
streamlit
Framework for creating interactive, data-driven web apps in Python.
streamlit hello
Check for the Streamlit installation:
streamlit run {{project_name}}
Run a Streamlit application:
streamlit --help
Display help:
