Skip to content

Commit a730fa9

Browse files
committed
docs html build
1 parent 305748c commit a730fa9

File tree

76 files changed

+5107
-2967
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+5107
-2967
lines changed

docs/html/_modules/index.html

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
21
<!DOCTYPE html>
32

4-
<html>
3+
<html lang="en">
54
<head>
65
<meta charset="utf-8" />
76
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>Overview: module code &#8212; pomdp_py 1.3.2 documentation</title>
9-
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
10-
<link rel="stylesheet" type="text/css" href="../_static/alabaster.css" />
11-
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
12-
<script src="../_static/jquery.js"></script>
13-
<script src="../_static/underscore.js"></script>
14-
<script src="../_static/doctools.js"></script>
15-
<link rel="shortcut icon" href="../_static/favicon.ico"/>
7+
<title>Overview: module code &#8212; pomdp_py 1.3.3 documentation</title>
8+
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b3523f8e" />
9+
<link rel="stylesheet" type="text/css" href="../_static/alabaster.css?v=253395cc" />
10+
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0aabb5f1"></script>
11+
<script src="../_static/doctools.js?v=888ff710"></script>
12+
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
13+
<link rel="icon" href="../_static/favicon.ico"/>
1614
<link rel="index" title="Index" href="../genindex.html" />
1715
<link rel="search" title="Search" href="../search.html" />
1816

@@ -35,7 +33,7 @@
3533

3634

3735

38-
<p class="blurb">A framework to build and solve POMDP problems (v1.3.2).</p>
36+
<p class="blurb">A framework to build and solve POMDP problems (v1.3.3).</p>
3937

4038

4139

@@ -89,7 +87,7 @@ <h3 id="searchlabel">Quick search</h3>
8987
</form>
9088
</div>
9189
</div>
92-
<script>$('#searchbox').show(0);</script>
90+
<script>document.getElementById('searchbox').style.display = "block"</script>
9391

9492

9593
<h3 class="donation">Donate/support</h3>
@@ -197,8 +195,8 @@ <h1>All modules for which code is available</h1>
197195
&copy;2020-2021, H2R@Brown.
198196

199197
|
200-
Powered by <a href="http://sphinx-doc.org/">Sphinx 4.5.0</a>
201-
&amp; <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.12</a>
198+
Powered by <a href="http://sphinx-doc.org/">Sphinx 7.1.0</a>
199+
&amp; <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.13</a>
202200

203201
</div>
204202

docs/html/_modules/pomdp_problems/tiger/tiger_problem.html

Lines changed: 26 additions & 29 deletions
Large diffs are not rendered by default.

docs/html/_modules/pomdp_py/utils/interfaces/conversion.html

Lines changed: 39 additions & 41 deletions
Large diffs are not rendered by default.

docs/html/_sources/changelog.rst.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ Changelog
33

44
Best viewed on `the website <https://h2r.github.io/pomdp-py/html/changelog.html>`_.
55

6+
Version 1.3.3 (07/25/2023)
7+
-------------------------
8+
* Fix :code:`cpdef -> cdef` to avoid installation failure after Cython 3.0.0 release (`pomdp-py#30 <https://github.com/h2r/pomdp-py/pull/30>`_).
9+
* Added float_precision argument to to_pomdp_file (`pomdp-py#29 <https://github.com/h2r/pomdp-py/pull/29>`_)
10+
* Add :code:`__init__` signature for Environment in comments to be visible in docs
11+
* Fix :code:`s -> sp` in :py:mod:`~pomdp_py.algorithms.value_iteration.ValueIteration` (`pomdp-py#20 <https://github.com/h2r/pomdp-py/issues/20>`_)
12+
* Allow updating rollout policy for :py:mod:`~pomdp_py.algorithms.po_uct.POUCT` and :py:mod:`~pomdp_py.algorithms.pomcp.POMCP`
13+
* Fix in :code:`setup.py` so that wheel builds properly.
14+
* Minor bug fixes and documentation.
15+
16+
617
Version 1.3.2 (04/03/2022)
718
-------------------------
819
* Fix in :py:mod:`~pomdp_py.representations.distribution.histogram` (in :code:`__str__`):

docs/html/_static/alabaster.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,9 @@ table.footnote td {
419419
}
420420

421421
dl {
422-
margin: 0;
422+
margin-left: 0;
423+
margin-right: 0;
424+
margin-top: 0;
423425
padding: 0;
424426
}
425427

docs/html/_static/basic.css

Lines changed: 44 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -222,7 +222,7 @@ table.modindextable td {
222222
/* -- general body styles --------------------------------------------------- */
223223

224224
div.body {
225-
min-width: 450px;
225+
min-width: 360px;
226226
max-width: 800px;
227227
}
228228

@@ -237,16 +237,6 @@ a.headerlink {
237237
visibility: hidden;
238238
}
239239

240-
a.brackets:before,
241-
span.brackets > a:before{
242-
content: "[";
243-
}
244-
245-
a.brackets:after,
246-
span.brackets > a:after {
247-
content: "]";
248-
}
249-
250240
h1:hover > a.headerlink,
251241
h2:hover > a.headerlink,
252242
h3:hover > a.headerlink,
@@ -335,12 +325,16 @@ p.sidebar-title {
335325
font-weight: bold;
336326
}
337327

328+
nav.contents,
329+
aside.topic,
338330
div.admonition, div.topic, blockquote {
339331
clear: left;
340332
}
341333

342334
/* -- topics ---------------------------------------------------------------- */
343335

336+
nav.contents,
337+
aside.topic,
344338
div.topic {
345339
border: 1px solid #ccc;
346340
padding: 7px;
@@ -379,13 +373,17 @@ div.body p.centered {
379373

380374
div.sidebar > :last-child,
381375
aside.sidebar > :last-child,
376+
nav.contents > :last-child,
377+
aside.topic > :last-child,
382378
div.topic > :last-child,
383379
div.admonition > :last-child {
384380
margin-bottom: 0;
385381
}
386382

387383
div.sidebar::after,
388384
aside.sidebar::after,
385+
nav.contents::after,
386+
aside.topic::after,
389387
div.topic::after,
390388
div.admonition::after,
391389
blockquote::after {
@@ -428,10 +426,6 @@ table.docutils td, table.docutils th {
428426
border-bottom: 1px solid #aaa;
429427
}
430428

431-
table.footnote td, table.footnote th {
432-
border: 0 !important;
433-
}
434-
435429
th {
436430
text-align: left;
437431
padding-right: 5px;
@@ -615,19 +609,26 @@ ul.simple p {
615609
margin-bottom: 0;
616610
}
617611

618-
dl.footnote > dt,
619-
dl.citation > dt {
612+
aside.footnote > span,
613+
div.citation > span {
620614
float: left;
621-
margin-right: 0.5em;
622615
}
623-
624-
dl.footnote > dd,
625-
dl.citation > dd {
616+
aside.footnote > span:last-of-type,
617+
div.citation > span:last-of-type {
618+
padding-right: 0.5em;
619+
}
620+
aside.footnote > p {
621+
margin-left: 2em;
622+
}
623+
div.citation > p {
624+
margin-left: 4em;
625+
}
626+
aside.footnote > p:last-of-type,
627+
div.citation > p:last-of-type {
626628
margin-bottom: 0em;
627629
}
628-
629-
dl.footnote > dd:after,
630-
dl.citation > dd:after {
630+
aside.footnote > p:last-of-type:after,
631+
div.citation > p:last-of-type:after {
631632
content: "";
632633
clear: both;
633634
}
@@ -644,10 +645,6 @@ dl.field-list > dt {
644645
padding-right: 5px;
645646
}
646647

647-
dl.field-list > dt:after {
648-
content: ":";
649-
}
650-
651648
dl.field-list > dd {
652649
padding-left: 0.5em;
653650
margin-top: 0em;
@@ -673,6 +670,16 @@ dd {
673670
margin-left: 30px;
674671
}
675672

673+
.sig dd {
674+
margin-top: 0px;
675+
margin-bottom: 0px;
676+
}
677+
678+
.sig dl {
679+
margin-top: 0px;
680+
margin-bottom: 0px;
681+
}
682+
676683
dl > dd:last-child,
677684
dl > dd:last-child > :last-child {
678685
margin-bottom: 0;
@@ -741,6 +748,14 @@ abbr, acronym {
741748
cursor: help;
742749
}
743750

751+
.translated {
752+
background-color: rgba(207, 255, 207, 0.2)
753+
}
754+
755+
.untranslated {
756+
background-color: rgba(255, 207, 207, 0.2)
757+
}
758+
744759
/* -- code displays --------------------------------------------------------- */
745760

746761
pre {

0 commit comments

Comments
 (0)