Skip to content

Commit 3baf7e6

Browse files
authored
Update __init__.py
1 parent cb560f4 commit 3baf7e6

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

__init__.py

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# quantum_sim/__init__.py
22

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
3+
"""
4+
Quantum Simulation Engine
5+
A high-performance density matrix simulator for NISQ-era algorithms.
6+
"""
7+
8+
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

Comments
 (0)