量子涡旋仿真平台 — 快速开始 / Quick Start
============================================

【文件清单 / File List】
  quantumsim-gui.exe              GUI 客户端 (双击启动) / GUI Client
  quantum_sim.dll                 核心引擎 DLL (GUI 和 Python 都需要) / Core Engine
  quantumsim_gui_lib.dll          GUI 运行时依赖 / GUI Runtime Dependency
  quantum_sim.h                   C ABI 头文件 / C ABI Header
  quantum_sim.dll.lib             C/C++ 链接库 / C/C++ Import Library
  使用教程.html                   完整使用说明 / Full Documentation
  快速开始.txt                    本文件 / This File
  python/                         Python 绑定与测试 / Python Bindings
    quantum_sim.py                Python 封装 / Python Wrapper
    circuit_test.py               12 类测试用例 / 12 Test Cases
    benchmark.py                  性能基准测试 / Benchmark
    example_bell.json             Bell 态示例 / Bell State Example
    example_ghz.json              GHZ 态示例 / GHZ State Example
    example_grover.json           Grover 算法示例 / Grover Algorithm Example

【快速开始 / Quick Start】
  1. GUI 使用: 双击 quantumsim-gui.exe (需 quantum_sim.dll 和 quantumsim_gui_lib.dll 同目录)
     GUI: Double-click quantumsim-gui.exe

  2. Python 调用:
     - 确保已安装 Python 3.8+ 和 numpy (pip install numpy)
     - 运行: python circuit_test.py
     - 查看 12 类测试用例结果

  3. C/C++ 集成:
     - #include "quantum_sim.h"
     - 链接 quantum_sim.dll.lib
     - 调用 qsim_state_new() 等 FFI 函数

【第三方集成 / Third-party Integration】
  - Python: 用 ctypes 加载 quantum_sim.dll, 参见 python/quantum_sim.py
  - C/C++: #include "quantum_sim.h", 链接 quantum_sim.dll.lib
  - Rust: 用 libloading 加载, 参见使用教程.html
  - 详见: 使用教程.html

【后端选择 / Backend Selection】
  ≤12 比特: Dense (最快) / Fastest
  13-64 比特: Sparse (省内存) / Memory Efficient
  低纠缠大电路: MPS (可达 10 万比特) / Up to 100,000 Qubits
  Clifford 电路: Stabilizer (最快) / Fastest for Clifford
  有 GPU: Hybrid (GPU 加速) / GPU Accelerated

【量子门支持 / Gate Support】
  共 21 种 / 21 Gate Types:
  H X Y Z S T CNOT CZ Toffoli SWAP Rx Ry Rz U3 iSWAP XX YY CRx CRy CRz Fredkin
  GUI 拖拽支持前 9 种, DLL FFI 支持全部 21 种

【授权说明 / License】
  - GUI 客户端: Apache-2.0 开源, 可自由使用
  - 核心 DLL: 商用授权, 首次运行自动获取 30 天试用
  - 购买授权请联系: https://epiphys.com

【技术支持 / Support】
  完整文档: 使用教程.html
  在线文档: https://epiphys.com
