You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...will generate reports for all commits between (inclusive) [starting hash]
216
-
and [ending hash].
217
-
218
-
./generate-site.bash -s [starting hash]
219
-
220
-
... will generate reports for all commits newer than [starting hash]. This command
221
-
can be the basis for some automated report generation process (i.e. a cron job).
222
-
223
-
Finally, to remove the Gipeda infrastructure from your computer, you may execute:
224
-
225
-
./cleanup-gipeda.bash
226
-
227
-
...which will remove any files created by `deploy-gipeda.bash` and `generate-site.bash`
228
-
from your computer.
229
-
230
-
231
-
## Configuration Management
232
-
233
-
It is very important that the version of Liquid Haskell be maintained properly.
234
-
235
-
Suppose that the current version of Liquid Haskell is `A.B.C.D`:
236
-
237
-
+ After a release to hackage is made, if any of the components `B`, `C`, or `D` are missing, they shall be added and set to `0`. Then the `D` component of Liquid Haskell shall be incremented by `1`. The version of Liquid Haskell is now `A.B.C.(D + 1)`
238
-
239
-
+ The first time a new function or type is exported from Liquid Haskell, if any of the components `B`, or `C` are missing, they shall be added and set to `0`. Then the `C` component shall be incremented by `1`, and the `D` component shall stripped. The version of Liquid Haskell is now `A.B.(C + 1)`
240
-
241
-
+ The first time the signature of an exported function or type is changed, or an exported function or type is removed (this includes functions or types that Liquid Haskell re-exports from its own dependencies), if the `B` component is missing, it shall be added and set to `0`. Then the `B` component shall be incremented by `1`, and the `C` and `D` components shall be stripped. The version of Liquid Haskell is now `A.(B + 1)`
242
-
243
-
+ The `A` component shall be updated at the sole discretion of the project owners.
244
-
245
-
## Updating GHC Versions
121
+
```
122
+
cd ./liquid-fixpoint
123
+
git fetch --all
124
+
git checkout <remote>/<branch>
125
+
cd ..
126
+
```
246
127
247
-
Here's a script to generate the diff for the `desugar` modules.
128
+
This will update `liquid-fixpoint` to the latest version on `<branch>` (usually `master`)
129
+
from `<remote>` (usually `origin`). After updating `liquid-fixpoint`, make sure to include this change in a
To enable theorem proving, e.g. as [described here](https://ucsd-progsys.github.io/liquidhaskell-blog/tags/reflection.html)
37
42
use the option
38
43
@@ -65,15 +70,17 @@ liquid annotation
65
70
{-@ automatic-instances theorem @-}
66
71
```
67
72
68
-
To allow reasoning about function extensionality use the `extensionality flag`. [See](https://github.com/ucsd-progsys/liquidhaskell/blob/880c78f94520d76fa13880eac050f21dacb592fd/tests/pos/T1577.hs)
73
+
To allow reasoning about function extensionality use the `--extensionality` flag.
74
+
[See test T1577](https://github.com/ucsd-progsys/liquidhaskell/blob/880c78f94520d76fa13880eac050f21dacb592fd/tests/pos/T1577.hs).
69
75
70
76
```
71
77
{-@ LIQUID "--extensionality" @-}
72
78
```
73
79
74
-
75
80
##FastChecking
76
81
82
+
**Options:**`fast`, `nopolyinfer`
83
+
77
84
The option `--fast` or `--nopolyinfer` greatly recudes verification time, can also reduces precision of type checking.
78
85
It, per module, deactivates inference of refinements during
79
86
instantiation of polymorphic type variables.
@@ -82,18 +89,13 @@ functions are trivially refined.
82
89
83
90
##IncrementalChecking
84
91
85
-
LiquidHaskell supports *incremental* checking where each run only checks
86
-
the part of the program that has been modified since the previous run.
87
-
88
-
```
89
-
$ liquid --diff foo.hs
90
-
```
91
-
92
-
Each run of`liquid` saves the file to a `.bak` file and the *subsequent* run
92
+
**Options:**`diff`
93
93
94
-
+ does a `diff` to see what has changed w.r.t. the `.bak` file
95
-
+ only generates constraints for the `[CoreBind]` corresponding to the
96
-
changed top-level binders and their transitive dependencies.
94
+
TheLiquidHaskell executable supports *incremental* checking where each run only checks
95
+
the part of the program that has been modified since the previous run.Each run of`liquid` saves the file
96
+
to a `.bak` file and the *subsequent* run does a `diff` to see what has changed w.r.t. the `.bak` file only
97
+
generates constraints for the `[CoreBind]` corresponding to the changed top-level binders and their
98
+
transitive dependencies.
97
99
98
100
The time savings are quite significant.For example:
99
101
@@ -108,7 +110,7 @@ The time savings are quite significant. For example:
108
110
Nowif you go and tweak the definition of`spanEnd` on line 1192and re-run:
109
111
110
112
```
111
-
$ time liquid -d--notermination -i . Data/ByteString.hs > log 2>&1
Copy file name to clipboardexpand all lines: docs/mkDocs/docs/plugin.md
+12-15
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,8 @@
3
3
As of LH version 0.8.10, mirroring GHC-8.10, LiquidHaskell
4
4
is available as a [GHC compiler plugin](https://downloads.haskell.org/~ghc/8.10.1/docs/html/users_guide/extending_ghc.html).
5
5
6
-
(We still offer a [legacy executable](legacy.md) which uses
7
-
the plugin internally, to give users enough time to complete
8
-
migrations to the new system.)
6
+
(We still offer the old [legacy executable](legacy.md), to give users enough time to complete migrations
7
+
to the new system.)
9
8
10
9
## Benefits
11
10
@@ -19,19 +18,19 @@ of your project in the cabal file, after which `stack` or `cabal` automatically:
19
18
20
19
**We recommend switching to the new compiler plugin as soon as possible.**
21
20
22
-
## Installation and Use
21
+
## External software requirements
23
22
24
-
1. Install an SMT Solver Download and install at least one of
23
+
Make sure all the required [external software](install.md) software is installed before proceeding.
25
24
26
-
Z3 or Microsoft official binary
27
-
CVC4
28
-
MathSat
25
+
## Getting started
29
26
30
-
Note: The SMT solver binary should be on your PATH; LiquidHaskell will execute it as a child process.
27
+
We offer a detailed "getting started" walkthrough in the form of a Haskell module with a lot of comments,
28
+
written in prose. You can read it [here](https://github.com/ucsd-progsys/liquidhaskell/tree/develop/src/Language/Haskell/Liquid/GHC/Plugin/Tutorial.hs).
31
29
32
-
The following concrete examples show how the source plugin works
30
+
## Examples
31
+
32
+
The following concrete examples show the source plugin in action:
0 commit comments