Skip to content

Commit

Permalink
adjust toc
Browse files Browse the repository at this point in the history
  • Loading branch information
Jue-Xu committed Aug 7, 2024
1 parent 6653398 commit e4b678a
Show file tree
Hide file tree
Showing 158 changed files with 16,978 additions and 1,115 deletions.
Binary file modified _build/.doctrees/README.doctree
Binary file not shown.
Binary file modified _build/.doctrees/adaptive.doctree
Binary file not shown.
Binary file modified _build/.doctrees/anticommute.doctree
Binary file not shown.
Binary file modified _build/.doctrees/applications/misc.doctree
Binary file not shown.
Binary file modified _build/.doctrees/average.doctree
Binary file not shown.
Binary file modified _build/.doctrees/basic.doctree
Binary file not shown.
Binary file modified _build/.doctrees/bound.doctree
Binary file not shown.
Binary file modified _build/.doctrees/channel.doctree
Binary file not shown.
Binary file modified _build/.doctrees/chem.doctree
Binary file not shown.
Binary file modified _build/.doctrees/debug.doctree
Binary file not shown.
Binary file modified _build/.doctrees/environment.pickle
Binary file not shown.
Binary file modified _build/.doctrees/fermion.doctree
Binary file not shown.
Binary file modified _build/.doctrees/field.doctree
Binary file not shown.
Binary file modified _build/.doctrees/ground.doctree
Binary file not shown.
Binary file modified _build/.doctrees/grouping.doctree
Binary file not shown.
Binary file added _build/.doctrees/hamiltonian.doctree
Binary file not shown.
Binary file modified _build/.doctrees/interference.doctree
Binary file not shown.
Binary file modified _build/.doctrees/intro.doctree
Binary file not shown.
Binary file modified _build/.doctrees/jax.doctree
Binary file not shown.
Binary file added _build/.doctrees/lcu.doctree
Binary file not shown.
Binary file modified _build/.doctrees/localization.doctree
Binary file not shown.
Binary file modified _build/.doctrees/open.doctree
Binary file not shown.
Binary file modified _build/.doctrees/operator.doctree
Binary file not shown.
Binary file modified _build/.doctrees/ordering.doctree
Binary file not shown.
Binary file added _build/.doctrees/ordering_chem.doctree
Binary file not shown.
Binary file modified _build/.doctrees/path_integral.doctree
Binary file not shown.
Binary file modified _build/.doctrees/phase_estimation.doctree
Binary file not shown.
Binary file modified _build/.doctrees/phase_transition.doctree
Binary file not shown.
Binary file added _build/.doctrees/post_trotter.doctree
Binary file not shown.
Binary file added _build/.doctrees/qsp.doctree
Binary file not shown.
Binary file modified _build/.doctrees/quantities.doctree
Binary file not shown.
Binary file modified _build/.doctrees/random_input.doctree
Binary file not shown.
Binary file modified _build/.doctrees/short_time.doctree
Binary file not shown.
Binary file added _build/.doctrees/simulation.doctree
Binary file not shown.
Binary file modified _build/.doctrees/spin.doctree
Binary file not shown.
Binary file modified _build/.doctrees/state.doctree
Binary file not shown.
Binary file modified _build/.doctrees/tensor_network.doctree
Binary file not shown.
Binary file added _build/.doctrees/trotter.doctree
Binary file not shown.
Binary file modified _build/.doctrees/trotter_bound.doctree
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "2763848a",
"metadata": {},
"outputs": [],
"source": [
"from qiskit.quantum_info import SparsePauliOp, Statevector\n",
"\n",
"import quantum_simulation_recipe as qsr\n",
"from quantum_simulation_recipe import spin"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "8032a8eb",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"SparsePauliOp(['IIXX', 'IXXI', 'XXII', 'IIIZ', 'IIZI', 'IZII', 'ZIII'],\n",
" coeffs=[1. +0.j, 1. +0.j, 1. +0.j, 0.2+0.j, 0.2+0.j, 0.2+0.j, 0.2+0.j])"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"H = spin.Nearest_Neighbour_1d(4, Jx=1, hz=0.2)\n",
"H.ham"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "5c75d90b",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"SparsePauliOp(['IIXX', 'IXIX', 'XIIX', 'IXXI', 'XIXI', 'XXII', 'IIIZ', 'IIZI', 'IZII', 'ZIII'],\n",
" coeffs=[1. +0.j, 0.0625 +0.j, 0.012346+0.j, 1. +0.j, 0.0625 +0.j,\n",
" 1. +0.j, 0.2 +0.j, 0.2 +0.j, 0.2 +0.j, 0.2 +0.j])"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"H = spin.Power_Law(4, alpha=4, Jx=1, hz=0.2)\n",
"H.ham"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3.8.8 ('base')",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.14"
},
"vscode": {
"interpreter": {
"hash": "4e8ef2f9fcac0817bca9a7ca376f64f20b4df5ea3bf7af756a50bda7d3557ea6"
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Loading

0 comments on commit e4b678a

Please sign in to comment.