Skip to content

Commit

Permalink
build based on 5bce61e
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed May 7, 2024
1 parent e186157 commit a746d2c
Show file tree
Hide file tree
Showing 20 changed files with 1,123 additions and 15,615 deletions.
1 change: 1 addition & 0 deletions dev/.documenter-siteinfo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"documenter":{"julia_version":"1.10.3","generation_timestamp":"2024-05-07T17:24:58","documenter_version":"1.4.1"}}
2 changes: 1 addition & 1 deletion dev/addFeatures/index.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>FAQ · PiecewiseDeterministicMarkovProcesses.jl</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><div class="docs-package-name"><span class="docs-autofit">PiecewiseDeterministicMarkovProcesses.jl</span></div><form class="docs-search" action="../search/"><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../tutorials/">Tutorials</a></li><li><a class="tocitem" href="../problem/">Problem Type</a></li><li><a class="tocitem" href="../solver/">Solver Algorithms</a></li><li class="is-active"><a class="tocitem" href>FAQ</a><ul class="internal"><li><a class="tocitem" href="#Specify-a-jump-with-a-function-1"><span>Specify a jump with a function</span></a></li><li><a class="tocitem" href="#Rejection-method-stopped,-recover-data!-1"><span>Rejection method stopped, recover data!</span></a></li></ul></li><li><a class="tocitem" href="../library/">Library</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>FAQ</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>FAQ</a></li></ul></nav><div class="docs-right"><a class="docs-edit-link" href="https://github.com/rveltz/PiecewiseDeterministicMarkovProcesses.jl/blob/master/docs/src/addFeatures.md" title="Edit on GitHub"><span class="docs-icon fab"></span><span class="docs-label is-hidden-touch">Edit on GitHub</span></a><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article class="content" id="documenter-page"><h2 id="Specify-a-jump-with-a-function-1"><a class="docs-heading-anchor" href="#Specify-a-jump-with-a-function-1">Specify a jump with a function</a><a class="docs-heading-anchor-permalink" href="#Specify-a-jump-with-a-function-1" title="Permalink"></a></h2><p>See <code>examples/pdmp_example_eva.jl</code> for an example.</p><h2 id="Rejection-method-stopped,-recover-data!-1"><a class="docs-heading-anchor" href="#Rejection-method-stopped,-recover-data!-1">Rejection method stopped, recover data!</a><a class="docs-heading-anchor-permalink" href="#Rejection-method-stopped,-recover-data!-1" title="Permalink"></a></h2><p>If you chose an upper bound for the rejection method that is too small and triggers an interruption like</p><pre><code class="language-julia">ERROR: AssertionError: Error, your bound on the rates is not high enough!, [26.730756983739408, 20.0]</code></pre><p>the <code>solve</code> does not return anything. However, in order to understand why your bound is too small, you would like to have a look at your trajectory up to the point where you bound failed. Don&#39;t worry, your computation is still in memory!</p><p>If your call is like this:</p><pre><code class="language-none">sol = solve(problem, Rejection(Tsit5()) )</code></pre><p>then the trajectory is saved in the variables <code>problem.time</code>, <code>problem.Xc</code> and <code>problem.Xd</code>.</p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../solver/">« Solver Algorithms</a><a class="docs-footer-nextpage" href="../library/">Library »</a></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 27 October 2020 12:32">Tuesday 27 October 2020</span>. Using Julia version 1.1.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>FAQ · PiecewiseDeterministicMarkovProcesses.jl</title><meta name="title" content="FAQ · PiecewiseDeterministicMarkovProcesses.jl"/><meta property="og:title" content="FAQ · PiecewiseDeterministicMarkovProcesses.jl"/><meta property="twitter:title" content="FAQ · PiecewiseDeterministicMarkovProcesses.jl"/><meta name="description" content="Documentation for PiecewiseDeterministicMarkovProcesses.jl."/><meta property="og:description" content="Documentation for PiecewiseDeterministicMarkovProcesses.jl."/><meta property="twitter:description" content="Documentation for PiecewiseDeterministicMarkovProcesses.jl."/><script data-outdated-warner src="../assets/warner.js"></script><link href="https://cdnjs.cloudflare.com/ajax/libs/lato-font/3.0.0/css/lato-font.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/juliamono/0.050/juliamono.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../search_index.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark" data-theme-primary-dark/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><div class="docs-package-name"><span class="docs-autofit"><a href="../">PiecewiseDeterministicMarkovProcesses.jl</a></span></div><button class="docs-search-query input is-rounded is-small is-clickable my-2 mx-auto py-1 px-2" id="documenter-search-query">Search docs (Ctrl + /)</button><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../tutorials/">Tutorials</a></li><li><a class="tocitem" href="../problem/">Problem Type</a></li><li><a class="tocitem" href="../solver/">Solver Algorithms</a></li><li class="is-active"><a class="tocitem" href>FAQ</a><ul class="internal"><li><a class="tocitem" href="#Specify-a-jump-with-a-function"><span>Specify a jump with a function</span></a></li><li><a class="tocitem" href="#Rejection-method-stopped,-recover-data!"><span>Rejection method stopped, recover data!</span></a></li></ul></li><li><a class="tocitem" href="../library/">Library</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><a class="docs-sidebar-button docs-navbar-link fa-solid fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>FAQ</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>FAQ</a></li></ul></nav><div class="docs-right"><a class="docs-navbar-link" href="https://github.com/rveltz/PiecewiseDeterministicMarkovProcesses.jl" title="View the repository on GitHub"><span class="docs-icon fa-brands"></span><span class="docs-label is-hidden-touch">GitHub</span></a><a class="docs-navbar-link" href="https://github.com/rveltz/PiecewiseDeterministicMarkovProcesses.jl/blob/master/docs/src/addFeatures.md" title="Edit source on GitHub"><span class="docs-icon fa-solid"></span></a><a class="docs-settings-button docs-navbar-link fa-solid fa-gear" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-article-toggle-button fa-solid fa-chevron-up" id="documenter-article-toggle-button" href="javascript:;" title="Collapse all docstrings"></a></div></header><article class="content" id="documenter-page"><h2 id="Specify-a-jump-with-a-function"><a class="docs-heading-anchor" href="#Specify-a-jump-with-a-function">Specify a jump with a function</a><a id="Specify-a-jump-with-a-function-1"></a><a class="docs-heading-anchor-permalink" href="#Specify-a-jump-with-a-function" title="Permalink"></a></h2><p>See <code>examples/pdmp_example_eva.jl</code> for an example.</p><h2 id="Rejection-method-stopped,-recover-data!"><a class="docs-heading-anchor" href="#Rejection-method-stopped,-recover-data!">Rejection method stopped, recover data!</a><a id="Rejection-method-stopped,-recover-data!-1"></a><a class="docs-heading-anchor-permalink" href="#Rejection-method-stopped,-recover-data!" title="Permalink"></a></h2><p>If you chose an upper bound for the rejection method that is too small and triggers an interruption like</p><pre><code class="language-julia hljs">ERROR: AssertionError: Error, your bound on the rates is not high enough!, [26.730756983739408, 20.0]</code></pre><p>the <code>solve</code> does not return anything. However, in order to understand why your bound is too small, you would like to have a look at your trajectory up to the point where you bound failed. Don&#39;t worry, your computation is still in memory!</p><p>If your call is like this:</p><pre><code class="nohighlight hljs">sol = solve(problem, Rejection(Tsit5()) )</code></pre><p>then the trajectory is saved in the variables <code>problem.time</code>, <code>problem.Xc</code> and <code>problem.Xd</code>.</p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../solver/">« Solver Algorithms</a><a class="docs-footer-nextpage" href="../library/">Library »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.4.1 on <span class="colophon-date" title="Tuesday 7 May 2024 17:24">Tuesday 7 May 2024</span>. Using Julia version 1.10.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
Loading

0 comments on commit a746d2c

Please sign in to comment.