Skip to content

Commit ce4a10f

Browse files
committed
deploy: f05cea2
0 parents  commit ce4a10f

40 files changed

+5423
-0
lines changed

.buildinfo

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: 40b9eebc4f29cf57938ca79c6f186110
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7

.nojekyll

Whitespace-only changes.

_modules/index.html

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en" data-content_root="../">
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Overview: module code &#8212; MCintegration 1.0.0 documentation</title>
8+
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=4848ba22" />
9+
<link rel="stylesheet" type="text/css" href="../_static/pyramid.css?v=424f8d56" />
10+
<script src="../_static/documentation_options.js?v=8d563738"></script>
11+
<script src="../_static/doctools.js?v=9bcbadda"></script>
12+
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
13+
<link rel="index" title="Index" href="../genindex.html" />
14+
<link rel="search" title="Search" href="../search.html" />
15+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Neuton&amp;subset=latin" type="text/css" media="screen" charset="utf-8" />
16+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nobile:regular,italic,bold,bolditalic&amp;subset=latin" type="text/css" media="screen" charset="utf-8" />
17+
<!--[if lte IE 6]>
18+
<link rel="stylesheet" href="../_static/ie6.css" type="text/css" media="screen" charset="utf-8" />
19+
<![endif]-->
20+
21+
</head><body>
22+
23+
<div class="related" role="navigation" aria-label="Related">
24+
<h3>Navigation</h3>
25+
<ul>
26+
<li class="right" style="margin-right: 10px">
27+
<a href="../genindex.html" title="General Index"
28+
accesskey="I">index</a></li>
29+
<li class="right" >
30+
<a href="../py-modindex.html" title="Python Module Index"
31+
>modules</a> |</li>
32+
<li class="nav-item nav-item-0"><a href="../index.html">MCintegration 1.0.0 documentation</a> &#187;</li>
33+
<li class="nav-item nav-item-this"><a href="">Overview: module code</a></li>
34+
</ul>
35+
</div>
36+
37+
<div class="document">
38+
<div class="documentwrapper">
39+
<div class="bodywrapper">
40+
<div class="body" role="main">
41+
42+
<h1>All modules for which code is available</h1>
43+
<ul><li><a href="integrators.html">integrators</a></li>
44+
<li><a href="maps.html">maps</a></li>
45+
<li><a href="mc_test.html">mc_test</a></li>
46+
<li><a href="utils.html">utils</a></li>
47+
</ul>
48+
49+
<div class="clearer"></div>
50+
</div>
51+
</div>
52+
</div>
53+
<div class="sphinxsidebar" role="navigation" aria-label="Main">
54+
<div class="sphinxsidebarwrapper">
55+
<search id="searchbox" style="display: none" role="search">
56+
<h3 id="searchlabel">Quick search</h3>
57+
<div class="searchformwrapper">
58+
<form class="search" action="../search.html" method="get">
59+
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
60+
<input type="submit" value="Go" />
61+
</form>
62+
</div>
63+
</search>
64+
<script>document.getElementById('searchbox').style.display = "block"</script>
65+
</div>
66+
</div>
67+
<div class="clearer"></div>
68+
</div>
69+
<div class="related" role="navigation" aria-label="Related">
70+
<h3>Navigation</h3>
71+
<ul>
72+
<li class="right" style="margin-right: 10px">
73+
<a href="../genindex.html" title="General Index"
74+
>index</a></li>
75+
<li class="right" >
76+
<a href="../py-modindex.html" title="Python Module Index"
77+
>modules</a> |</li>
78+
<li class="nav-item nav-item-0"><a href="../index.html">MCintegration 1.0.0 documentation</a> &#187;</li>
79+
<li class="nav-item nav-item-this"><a href="">Overview: module code</a></li>
80+
</ul>
81+
</div>
82+
<div class="footer" role="contentinfo">
83+
&#169; Copyright 2024, Authors.
84+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
85+
</div>
86+
</body>
87+
</html>

_modules/integrators.html

+308
Large diffs are not rendered by default.

_modules/maps.html

+472
Large diffs are not rendered by default.

_modules/mc_test.html

+171
Large diffs are not rendered by default.

_modules/utils.html

+269
Large diffs are not rendered by default.

_sources/index.rst.txt

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.. y documentation master file, created by
2+
sphinx-quickstart on Tue Oct 15 10:32:44 2024.
3+
You can adapt this file completely to your liking, but it should at least
4+
contain the root `toctree` directive.
5+
6+
y documentation
7+
===============
8+
9+
Add your content using ``reStructuredText`` syntax. See the
10+
`reStructuredText <https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html>`_
11+
documentation for details.
12+
13+
14+
.. toctree::
15+
:maxdepth: 2
16+
:caption: Contents:
17+

_sources/modules.rst.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
src
2+
===
3+
4+
.. toctree::
5+
:maxdepth: 4
6+
7+
src

_sources/src.rst.txt

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
src package
2+
===========
3+
4+
Submodules
5+
----------
6+
7+
integrators module
8+
----------------------
9+
10+
.. automodule:: integrators
11+
:members:
12+
:undoc-members:
13+
:show-inheritance:
14+
15+
maps module
16+
---------------
17+
18+
.. automodule:: maps
19+
:members:
20+
:undoc-members:
21+
:show-inheritance:
22+
23+
mc\_test module
24+
-------------------
25+
26+
.. automodule:: mc_test
27+
:members:
28+
:undoc-members:
29+
:show-inheritance:
30+
31+
utils module
32+
----------------
33+
34+
.. automodule:: utils
35+
:members:
36+
:undoc-members:
37+
:show-inheritance:
38+
39+
Module contents
40+
---------------
41+
42+
.. automodule:: src
43+
:members:
44+
:undoc-members:
45+
:show-inheritance:

0 commit comments

Comments
 (0)