Skip to content

Commit

Permalink
Deploying to gh-pages from @ bb33982 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nilehmann committed Dec 22, 2024
1 parent 49c6ef2 commit f167381
Show file tree
Hide file tree
Showing 152 changed files with 458 additions and 380 deletions.
2 changes: 1 addition & 1 deletion doc/flux_infer/infer/struct.Tag.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/flux_infer/refine_tree/struct.NodePtr.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/flux_infer/refine_tree/struct.RefineCtxt.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/flux_infer/refine_tree/struct.RefineTree.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/flux_infer/refine_tree/struct.Scope.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/flux_middle/all.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions doc/flux_middle/big_int/struct.BigInt.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
sign: <a class="enum" href="enum.Sign.html" title="enum flux_middle::big_int::Sign">Sign</a>,
val: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>,
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A signed integer in the range [-2^128, 2^128], represented by a <code>u128</code> and an explicit sign.</p>
<p>In the logic, we work with natural numbers so we could represent them with arbitrary precision
<p>In the logic, we work mathematical integers so we could represent them with arbitrary precision
integers. We instead take the simpler approach of using a fixed size representation that allows
us to store any Rust literal, i.e., we can represent both <code>i128::MIN</code> and <code>u128::MAX</code>. Since we
never do arithmetic, this representation doesn’t present any problems. We may choose to change
the representation in the future (and use arbitrary precision integers) if this ever become a
problem, e.g., if we want to do (precise) arithmetic during constant folding.</p>
us to store any Rust literal, i.e., we can represent both <code>i128::MIN</code> and <code>u128::MAX</code>. This works
because we never do arithmetic. We can change the representation in the future (and use arbitrary
precision integers) if this ever becomes a problem, e.g., if we want to do (precise) arithmetic
during constant folding.</p>
</div></details><h2 id="fields" class="fields section-header">Fields<a href="#fields" class="anchor">§</a></h2><span id="structfield.sign" class="structfield section-header"><a href="#structfield.sign" class="anchor field">§</a><code>sign: <a class="enum" href="enum.Sign.html" title="enum flux_middle::big_int::Sign">Sign</a></code></span><span id="structfield.val" class="structfield section-header"><a href="#structfield.val" class="anchor field">§</a><code>val: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a></code></span><h2 id="implementations" class="section-header">Implementations<a href="#implementations" class="anchor">§</a></h2><div id="implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-BigInt" class="impl"><a class="src rightside" href="../../src/flux_middle/big_int.rs.html#26-47">Source</a><a href="#impl-BigInt" class="anchor">§</a><h3 class="code-header">impl <a class="struct" href="struct.BigInt.html" title="struct flux_middle::big_int::BigInt">BigInt</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.ZERO" class="associatedconstant"><a class="src rightside" href="../../src/flux_middle/big_int.rs.html#27">Source</a><h4 class="code-header">pub const <a href="#associatedconstant.ZERO" class="constant">ZERO</a>: <a class="struct" href="struct.BigInt.html" title="struct flux_middle::big_int::BigInt">BigInt</a> = _</h4></section><section id="associatedconstant.ONE" class="associatedconstant"><a class="src rightside" href="../../src/flux_middle/big_int.rs.html#28">Source</a><h4 class="code-header">pub const <a href="#associatedconstant.ONE" class="constant">ONE</a>: <a class="struct" href="struct.BigInt.html" title="struct flux_middle::big_int::BigInt">BigInt</a> = _</h4></section><details class="toggle method-toggle" open><summary><section id="method.int_min" class="method"><a class="src rightside" href="../../src/flux_middle/big_int.rs.html#32-34">Source</a><h4 class="code-header">pub fn <a href="#method.int_min" class="fn">int_min</a>(bit_width: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="struct.BigInt.html" title="struct flux_middle::big_int::BigInt">BigInt</a></h4></section></summary><div class="docblock"><p>Given the bit width of a signed integer type, produces the minimum integer for
that type, i.e., -2^(bit_width - 1).</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.int_max" class="method"><a class="src rightside" href="../../src/flux_middle/big_int.rs.html#38-40">Source</a><h4 class="code-header">pub fn <a href="#method.int_max" class="fn">int_max</a>(bit_width: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="struct.BigInt.html" title="struct flux_middle::big_int::BigInt">BigInt</a></h4></section></summary><div class="docblock"><p>Given the bit width of a signed integer type, produces the maximum integer for
Expand Down
2 changes: 1 addition & 1 deletion doc/flux_middle/fhir/enum.InferMode.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions doc/flux_middle/global_env/struct.GlobalEnv.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/flux_middle/macro._Bool.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `_Bool` macro in crate `flux_middle`."><title>_Bool in flux_middle - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../static.files/rustdoc-590a400c.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="flux_middle" data-themes="" data-resource-suffix="" data-rustdoc-version="1.84.0-nightly (b3f75cc87 2024-11-02)" data-channel="nightly" data-search-js="search-c5a66128.js" data-settings-js="settings-0f613d39.js" ><script src="../static.files/storage-59e33391.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-5f194d8c.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-893ab5e7.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-6580c154.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-044be391.svg"></head><body class="rustdoc macro"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../flux_middle/index.html">flux_<wbr>middle</a><span class="version">0.1.0</span></h2></div><div class="sidebar-elems"><div id="rustdoc-modnav"></div></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><span class="rustdoc-breadcrumbs"><a href="index.html">flux_middle</a></span><h1>Macro <span class="macro">_Bool</span><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../src/flux_middle/rty/mod.rs.html#2568-2572">Source</a> </span></div><pre class="rust item-decl"><span class="macro">macro_rules!</span> _Bool {
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `_Bool` macro in crate `flux_middle`."><title>_Bool in flux_middle - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../static.files/rustdoc-590a400c.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="flux_middle" data-themes="" data-resource-suffix="" data-rustdoc-version="1.84.0-nightly (b3f75cc87 2024-11-02)" data-channel="nightly" data-search-js="search-c5a66128.js" data-settings-js="settings-0f613d39.js" ><script src="../static.files/storage-59e33391.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-5f194d8c.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-893ab5e7.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-6580c154.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-044be391.svg"></head><body class="rustdoc macro"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../flux_middle/index.html">flux_<wbr>middle</a><span class="version">0.1.0</span></h2></div><div class="sidebar-elems"><div id="rustdoc-modnav"></div></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><span class="rustdoc-breadcrumbs"><a href="index.html">flux_middle</a></span><h1>Macro <span class="macro">_Bool</span><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../src/flux_middle/rty/mod.rs.html#2564-2568">Source</a> </span></div><pre class="rust item-decl"><span class="macro">macro_rules!</span> _Bool {
(<span class="macro-nonterminal">$idxs</span>:pat) =&gt; { ... };
}</pre></section></div></main></body></html>
2 changes: 1 addition & 1 deletion doc/flux_middle/macro._Int.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `_Int` macro in crate `flux_middle`."><title>_Int in flux_middle - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../static.files/rustdoc-590a400c.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="flux_middle" data-themes="" data-resource-suffix="" data-rustdoc-version="1.84.0-nightly (b3f75cc87 2024-11-02)" data-channel="nightly" data-search-js="search-c5a66128.js" data-settings-js="settings-0f613d39.js" ><script src="../static.files/storage-59e33391.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-5f194d8c.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-893ab5e7.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-6580c154.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-044be391.svg"></head><body class="rustdoc macro"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../flux_middle/index.html">flux_<wbr>middle</a><span class="version">0.1.0</span></h2></div><div class="sidebar-elems"><div id="rustdoc-modnav"></div></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><span class="rustdoc-breadcrumbs"><a href="index.html">flux_middle</a></span><h1>Macro <span class="macro">_Int</span><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../src/flux_middle/rty/mod.rs.html#2552-2556">Source</a> </span></div><pre class="rust item-decl"><span class="macro">macro_rules!</span> _Int {
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `_Int` macro in crate `flux_middle`."><title>_Int in flux_middle - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../static.files/rustdoc-590a400c.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="flux_middle" data-themes="" data-resource-suffix="" data-rustdoc-version="1.84.0-nightly (b3f75cc87 2024-11-02)" data-channel="nightly" data-search-js="search-c5a66128.js" data-settings-js="settings-0f613d39.js" ><script src="../static.files/storage-59e33391.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-5f194d8c.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-893ab5e7.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-6580c154.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-044be391.svg"></head><body class="rustdoc macro"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../flux_middle/index.html">flux_<wbr>middle</a><span class="version">0.1.0</span></h2></div><div class="sidebar-elems"><div id="rustdoc-modnav"></div></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><span class="rustdoc-breadcrumbs"><a href="index.html">flux_middle</a></span><h1>Macro <span class="macro">_Int</span><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../src/flux_middle/rty/mod.rs.html#2548-2552">Source</a> </span></div><pre class="rust item-decl"><span class="macro">macro_rules!</span> _Int {
(<span class="macro-nonterminal">$int_ty</span>:pat, <span class="macro-nonterminal">$idxs</span>:pat) =&gt; { ... };
}</pre></section></div></main></body></html>
Loading

0 comments on commit f167381

Please sign in to comment.