Skip to content

Commit 43ab6c3

Browse files
committed
website: fix urls and a typo
1 parent 961103c commit 43ab6c3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Do not hesitate to open an issue or send an email to [email protected] wi
1212
I am also happy to discuss anything via Zoom as well!
1313

1414
**The documentation is available at [www.caesarverifier.org](https://www.caesarverifier.org).**
15-
Start at with the [introduction](https://www.caesarverifier.org), then walk through the [quick start guide](https://www.caesarverifier.org/quickstart.html).
15+
Start at with the [introduction](https://www.caesarverifier.org/docs/), then walk through the [getting started guide](https://www.caesarverifier.org/docs/getting-started/).
1616

1717
We have an OOPSLA 2023 paper on Caesar and its theory: [_A Deductive Verification Infrastructure for Probabilistic Programs_](https://doi.org/10.1145/3622870).
1818
You can [find the preprint on arxiv](https://arxiv.org/abs/2309.07781).
1919

20-
There is also a [development guide](https://www.caesarverifier.org/devguide.html) if you want to work on Caesar itself.
20+
There is also a [development guide](https://www.caesarverifier.org/docs/devguide) if you want to work on Caesar itself.

website/docs/proof-rules/unrolling.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ This means we know that if verification of an upper bound *fails*, then it canno
3737
On the other hand, if verification succeeds, then we know nothing!
3838

3939
```heyvl
40-
coproc geo1_bmc(init_c: UInt) -> (c: UInt)
40+
coproc geo1_unroll(init_c: UInt) -> (c: UInt)
4141
pre init_c + 0.99
4242
post c
4343
{
4444
c = init_c
4545
var cont: Bool = true
46-
@bmc(12, 0) // k = 12, terminator = 0
46+
@unroll(12, 0) // k = 12, terminator = 0
4747
while cont {
4848
var prob_choice: Bool = flip(0.5)
4949
if prob_choice { cont = false } else { c = c + 1 }
@@ -64,7 +64,7 @@ if cont {
6464
}
6565
```
6666

67-
Trying to verify `geo1_bmc` will yield a counter-example to verification.
67+
Trying to verify `geo1_unroll` will yield a counter-example to verification.
6868
Because this is loop unrolling, it is a *true counter-example* to `init_c + 0.99` being an upper bound.
6969
On the other hand, if you change `k = 11`, then the program verifies.
7070
But this tells you nothing about the actual program semantics.

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const config = {
1111
favicon: 'img/laurel.svg',
1212

1313
// Set the production url of your site here
14-
url: 'https://caesarverifier.org',
14+
url: 'https://www.caesarverifier.org',
1515
// Set the /<baseUrl>/ pathname under which your site is served
1616
// For GitHub pages deployment, it is often '/<projectName>/'
1717
baseUrl: '/',

0 commit comments

Comments
 (0)