Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekatz04 committed Aug 20, 2024
1 parent e64c90e commit 494f716
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc

We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms/tags).

Current Version: 1.1.7
Current Version: 1.1.8

## Citation

Expand Down
Binary file modified docs/doctrees/README.doctree
Binary file not shown.
Binary file modified docs/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/doctrees/index.doctree
Binary file not shown.
Binary file modified docs/doctrees/user/ensemble.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/html/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ <h2>Versioning<a class="headerlink" href="#versioning" title="Link to this headi
<p>We use <a class="reference external" href="http://semver.org/">SemVer</a> for versioning. For the versions
available, see the <a class="reference external" href="https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms/tags">tags on this
repository</a>.</p>
<p>Current Version: 1.1.7</p>
<p>Current Version: 1.1.8</p>
</section>
<section id="citation">
<h2>Citation<a class="headerlink" href="#citation" title="Link to this heading"></a></h2>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/_sources/README.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ We use `SemVer <http://semver.org/>`__ for versioning. For the versions
available, see the `tags on this
repository <https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms/tags>`__.

Current Version: 1.1.7
Current Version: 1.1.8

Citation
--------
Expand Down
2 changes: 1 addition & 1 deletion docs/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ <h2>Versioning<a class="headerlink" href="#versioning" title="Link to this headi
<p>We use <a class="reference external" href="http://semver.org/">SemVer</a> for versioning. For the versions
available, see the <a class="reference external" href="https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms/tags">tags on this
repository</a>.</p>
<p>Current Version: 1.1.7</p>
<p>Current Version: 1.1.8</p>
</section>
<section id="citation">
<h2>Citation<a class="headerlink" href="#citation" title="Link to this heading"></a></h2>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/searchindex.js

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions docs/html/user/ensemble.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,19 @@ <h1>Ensemble<a class="headerlink" href="#ensemble" title="Link to this heading">
move from this list (optionally with weights) for each proposal.
If <code class="docutils literal notranslate"><span class="pre">None</span></code>, the default will be <code class="xref py py-class docutils literal notranslate"><span class="pre">StretchMove</span></code>.
(default: <code class="docutils literal notranslate"><span class="pre">None</span></code>)</p></li>
<li><p><strong>rj_moves</strong> (<em>list</em><em> or </em><em>object</em><em>, </em><em>optional</em>) – If <code class="docutils literal notranslate"><span class="pre">None</span></code> or <code class="docutils literal notranslate"><span class="pre">False</span></code>, reversible jump will not be included in the run.
<li><p><strong>rj_moves</strong> (<em>list</em><em> or </em><em>object</em><em> or </em><em>bool</em><em> or </em><em>str</em><em>, </em><em>optional</em>) – If <code class="docutils literal notranslate"><span class="pre">None</span></code> or <code class="docutils literal notranslate"><span class="pre">False</span></code>, reversible jump will not be included in the run.
This can be a single move object, a list of moves,
or a “weighted” list of the form <code class="docutils literal notranslate"><span class="pre">[(eryn.moves.DistributionGenerateRJ(),</span>
<span class="pre">0.1),</span> <span class="pre">...]</span></code>. When running, the sampler will randomly select a
move from this list (optionally with weights) for each proposal.
If <code class="docutils literal notranslate"><span class="pre">True</span></code>, it defaults to <code class="xref py py-class docutils literal notranslate"><span class="pre">DistributionGenerateRJ</span></code>.
If <code class="docutils literal notranslate"><span class="pre">True</span></code>, it defaults to <code class="xref py py-class docutils literal notranslate"><span class="pre">DistributionGenerateRJ</span></code>. When running just the <code class="xref py py-class docutils literal notranslate"><span class="pre">DistributionGenerateRJ</span></code>
with multiple branches, it will propose changes to all branhces simultaneously.
When running with more than one branch, useful options for <code class="docutils literal notranslate"><span class="pre">rj_moves</span></code> are <code class="docutils literal notranslate"><span class="pre">&quot;iterate_branches&quot;</span></code>,
<code class="docutils literal notranslate"><span class="pre">&quot;separate_branches&quot;</span></code>, or <code class="docutils literal notranslate"><span class="pre">&quot;together&quot;</span></code>. If <code class="docutils literal notranslate"><span class="pre">rj_moves</span> <span class="pre">==</span> <span class="pre">&quot;iterate_branches&quot;</span></code>, sample one branch by one branch in order of
the branch names. This occurs within one RJ proposal, for each RJ proposal. If <code class="docutils literal notranslate"><span class="pre">rj_moves</span> <span class="pre">==</span> <span class="pre">&quot;separate_branches&quot;</span></code>,
there will be one RJ move per branch. During each individual RJ move, one of these proposals is chosen at random with
equal propability. This is generally recommended when using multiple branches.
If <code class="docutils literal notranslate"><span class="pre">rj_moves</span> <span class="pre">==</span> <span class="pre">&quot;together&quot;</span></code>, this is equivalent to <code class="docutils literal notranslate"><span class="pre">rj_moves</span> <span class="pre">==</span> <span class="pre">True</span></code>.
(default: <code class="docutils literal notranslate"><span class="pre">None</span></code>)</p></li>
<li><p><strong>dr_moves</strong> (<em>bool</em><em>, </em><em>optional</em>) – If <code class="docutils literal notranslate"><span class="pre">None</span></code> ot <code class="docutils literal notranslate"><span class="pre">False</span></code>, delayed rejection when proposing “birth”
of new components/models will be switched off for this run. Requires <code class="docutils literal notranslate"><span class="pre">rj_moves</span></code> set to <code class="docutils literal notranslate"><span class="pre">True</span></code>.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ We use `SemVer <http://semver.org/>`__ for versioning. For the versions
available, see the `tags on this
repository <https://github.com/BlackHolePerturbationToolkit/FastEMRIWaveforms/tags>`__.

Current Version: 1.1.7
Current Version: 1.1.8

Citation
--------
Expand Down

0 comments on commit 494f716

Please sign in to comment.