We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb560f4 commit 3baf7e6Copy full SHA for 3baf7e6
__init__.py
@@ -1,8 +1,16 @@
1
# quantum_sim/__init__.py
2
3
-# This file marks 'quantum_sim' as a Python package.
4
-# It can also be used to selectively import core components for easier access.
5
-# from .core.circuit import QuantumCircuit
6
-# from .core.parameter import Parameter
7
-# from .gates.single_qubit_gates import Hadamard
8
-# from .backends.numpy_backend import NumpyBackend
+"""
+Quantum Simulation Engine
+A high-performance density matrix simulator for NISQ-era algorithms.
+
+from .core.circuit import QuantumCircuit
9
+from .core.parameter import Parameter
10
+from .backend.numpy_backend import NumpyBackend
11
12
+__all__ = [
13
+ "QuantumCircuit",
14
+ "Parameter",
15
+ "NumpyBackend",
16
+]
0 commit comments