QC

(★ 13)

Functional quasi-quantum computing simulator on classical hardware using physics models as a backend.

Owner Repos

File Explorer

  • .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

jsDelivr

jsDelivr 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 ▼

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 ▼

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 ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

rich

View Details ▼

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 ▼

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:

// repository documentation