Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Variables and Observables #603

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
d35fbe4
rebased on master
lfarv Feb 15, 2023
5533b08
axis defs
lfarv Feb 16, 2023
757f998
Added target
lfarv Feb 16, 2023
063fd9b
fixes
lfarv Feb 16, 2023
a4687fb
__str__ and status()
lfarv Feb 17, 2023
fc5ab88
Plots of norms and singular values
lfarv Feb 18, 2023
92563a6
Pickleable observables and variables
lfarv Feb 20, 2023
24ad904
small improvements
lfarv Feb 20, 2023
2b46013
Make unpickling Observables work
lfarv Feb 20, 2023
bb5a377
Documentation
lfarv Feb 21, 2023
d87238c
Documentation
lfarv Feb 21, 2023
c0973e6
Documentation
lfarv Feb 21, 2023
87022f7
Documentation
lfarv Feb 21, 2023
9280935
docstrings
lfarv Feb 22, 2023
3edd949
simplifications
lfarv Feb 22, 2023
459aa3d
Modified axisdef
lfarv Feb 22, 2023
3a7d5d1
simplified
lfarv Feb 23, 2023
565981d
response matrices
lfarv Feb 28, 2023
a718fa8
simplified variables
lfarv Feb 28, 2023
65b0277
simplified variables
lfarv Feb 28, 2023
146e289
typo
lfarv Feb 28, 2023
dba3252
rebased om master
lfarv Mar 1, 2023
ef7e1e5
Added matching.py
lfarv Mar 2, 2023
08d120a
rebased on master
lfarv Mar 2, 2023
691e3c5
update tests
lfarv Mar 11, 2023
00d1ba1
plots
lfarv Mar 13, 2023
31ecea9
Added load and save
lfarv Mar 14, 2023
462f64c
docstrings
lfarv Apr 2, 2023
25e9b32
annotations
lfarv Apr 2, 2023
82d6035
Added documentation
lfarv May 29, 2023
239b94c
Added documentation
lfarv May 29, 2023
ba5319b
Added example notebooks in the documentation
lfarv May 30, 2023
d8d09d6
Nodified the notebook
lfarv May 30, 2023
3836b64
Added examples of observables
lfarv May 30, 2023
166f8a0
Format the Observable notebook
lfarv May 30, 2023
cf20cb7
Added a Geometry Observable
lfarv Jun 2, 2023
7398ceb
Parameter and Expression classes
lfarv Jun 4, 2023
f7ee0ea
fix annotations
lfarv Jun 4, 2023
9ef2440
Update the example
lfarv Jun 4, 2023
077b853
Moved the new matching in latticetools
lfarv Jun 6, 2023
b6a1c64
test both ol and new matching
lfarv Jun 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'sphinx.ext.intersphinx',
'sphinx.ext.githubpages',
'sphinx.ext.viewcode',
'myst_parser',
'myst_nb',
'sphinx_copybutton',
]

Expand Down Expand Up @@ -92,6 +92,7 @@
"deflist"
]
myst_heading_anchors = 3
nb_execution_mode = "auto"

# -- Options for HTML output -------------------------------------------------

Expand Down
10 changes: 10 additions & 0 deletions docs/p/examples.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _example-notebooks:

Example notebooks
=================

.. toctree::
:maxdepth: 1

notebooks/test_variables
notebooks/test_observables
10 changes: 6 additions & 4 deletions docs/p/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Sub-packages
:hidden:

getting_started
examples

.. toctree::
:maxdepth: 2
Expand All @@ -42,14 +43,15 @@ Sub-packages
:caption: Packages:
:recursive:

at.acceptance
at.collective
at.lattice
at.latticetools
at.tracking
at.physics
at.load
at.matching
at.physics
at.acceptance
at.collective
at.plot
at.tracking
at.constants

Indices and tables
Expand Down
Loading