A collection of tools for interacting with Boogie and related languages.
The boogie-friends
package is an experimental collection of Emacs modes for
writing verified programs in z3 and languages of the Boogie family (including Dafny).
Notable features are listed below:
- Syntax highlighting
- Real-time verification (using
flycheck
)
In addition, the Dafny and Boogie modes offer:
- Completion (using
company
) - Code folding (using
hideshow
) - Prettification (using
prettify-symbols-mode
)
And the Dafny mode additionally also has:
- (A few) Snippets (using
yasnippet
) - (Some) In-Emacs documentation
- (Experimental) Navigation between Dafny and Boogie source files
- (Some support for) jumping to a definition
- (Experimental) support for using Dafny as a verification server. This means that Emacs spawns a server process, and uses Dafny's caching facilities to (massively) improve reactivity.
Notice the error highlighting, the symbol beautification (forall
appears as ∀
), and the code folding on the last line!
-
Setup MELPA by adding the following lines to your
.emacs
if you don't have them already (here's more information if you have trouble with this step):(require 'package) ;; You might already have this line (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t) (package-initialize) ;; You might already have this line
-
Install the package:
M-x package-refresh-contents RET
, thenM-x package-install RET boogie-friends RET
-
For Dafny, just use
M-x lsp
to download and run the Dafny language server. For other languages (or to use Dafny's legacy server), configure Flycheck as shown below.
Use the following settings to point boogie-friends
to Boogie and Z3 binaries:
;; To get real-time error highlights (Flycheck) in Boogie files
(setq flycheck-boogie-executable "PATH-TO-BOOGIE-BINARIES/Boogie")
;; To get real-time error highlights (Flycheck) in Z3 files
(setq flycheck-z3-executable "PATH-TO-Z3-BINARIES/z3")
;; To use Z3's axiom profiler
(setq boogie-friends-profile-analyzer-executable "PATH-TO-Z3-AXIOM-PROFILER")
dafny-mode
supports three real-time verification mechanisms: cli
, server
, and lsp
. LSP is the recommended one; it supports automatic downloads and advanced IDE features. To use it, open a Dafny buffer and type M-x lsp
(optionally, use M-x customize-variable RET lsp-dafny-preferred-version
first to chose which version of Dafny to install and run).
As an alternative (if you run into stability or performance issues with LSP), you can either:
-
Get on-the-fly verification through the legacy Dafny server, which more basic than LSP but also more robust, by downloading a Dafny release manually and configuring
flycheck-inferior-dafny-executable
:(setq flycheck-inferior-dafny-executable "PATH-TO-DAFNY-BINARIES/DafnyServer") (setq dafny-verification-backend 'server)
-
Get on-the-fly verification through the command line, which is slower (no caching) but even more robust, by downloading a Dafny release manually and configuring
flycheck-dafny-executable
:(setq flycheck-dafny-executable "PATH-TO-DAFNY-BINARIES/DafnyServer") (setq dafny-verification-backend 'cli)
If you run into issues, C-c ! v
(flycheck-verify-setup
) should have debugging info.
- C-c C-c re-verifies the current file. With a prefix argument (C-u C-c C-c), extra arguments are sent to the verifier (by default
/trace
). - S-TAB manually cycles through reasonable indentation levels.
- C-c C-t gets a verification trace for the current file, and parses the resulting timings.
- C-c C-p prompts for a method name, generates a tracing profile of that method, and launches the profile analyzer (
boogie-friends-profile-analyzer-executable
) on the resulting trace.
-
TAB auto-indents.
-
C-c C-? opens the Dafny docs.
-
<C-down-mouse-1> looks for the definition of the function under point in open buffers.
-
C-c C-a translates the current file to Boogie and shows the translated file.
-
C-c C-j or C-S-down-mouse-1 (aka Ctrl-Shift-Click) jumps to the Boogie line matching the current Dafny line.
-
After inserting a snippet, TAB moves to the next snippet field, and C-d removes the current field entirely.
-
During completion, C-h shows documentation for the current snippet, if available.
- Completion, indentation, snippets, syntax coloring, and real-time verification should work out of the box.
- Verification happens as you type, and its status is shows in the mode line (
FlyC*
: busy;FlyC:a/b
: done witha
errors andb
warnings).
Real-time error highlighting is enabled by default for all languages. You can disable it by adding (setq flycheck-disabled-checkers '(dafny inferior-dafny))
to your .emacs
.
If you see blocks instead of proper characters, or tall characters, or ugly characters:
-
Install a good font and restart Emacs (Arial Unicode, Cambria, Segoe UI Symbol, DejaVu Sans Mono, FreeMono, STIX, Unifont and Symbola should all work).
-
If that doesn't fix it, setup font fallback by adding the following to your
.emacs
(replace"Symbola"
by the name of your font):(set-fontset-font t 'unicode (font-spec :name "Symbola") nil 'append)
-
If that still doesn't work, turn of prettification entirely by adding the following to your
.emacs
:(defun no-prettification-in-dafny-mode () (prettify-symbols-mode -1)) (add-hook 'dafny-mode-hook #'no-prettification-in-dafny-mode)
If you don't like the way one particular symbol is rendered, you can adjust the font for just that one:
(set-fontset-font t (cons ?≔ ?≔) "FreeSerif" nil 'prepend)
A typical profiling workflow proceeds as follows:
- Open a file for which verification is slow, or times out.
- Use C-c C-t to generate a trace (the default timeout is set to 30s; you can customize it by changing
boogie-friends-profiler-timeout
). - Use C-c C-p to profile a function. The slowest method (as determined by the trace) is presented first.
- Marvel at the intricacies of the axiom profiler.
Note: The axiom profiler works best if it has a Boogie source file to look at; thus, when profiling a Dafny source file, boogie-friends
transparently saves it as a translated Boogie file first, and then runs Boogie (with profiling enabled) on it. Thus the profiler is Boogie in all cases, and custom prover arguments need to be set for Boogie if they are to be taken into account for profiling (for tracing and translation, however, Dafny's settings apply).
Each time boogie-friends
calls a prover, it collects arguments from four sources:
-
LANGUAGE-prover-args
, the list of arguments passed to the prover in the default configuration (i.e.dafny-prover-args
andboogie-prover-args
). This has pretty good defaults, and probably shouldn't be changed. -
LANGUAGE-prover-custom-args
, a list of extra flags. This is empty by default, and is a good place to add your own flags.
LANGUAGE-prover-local-args
, another list of extra flags. This is empty by default, and is a good place to add per-file or per-directory flags (see below).
LANGUAGE-prover-alternate-args
, a list of flags added to the prover invocation when runningverify/compile
with a prefix argument (C-u C-c C-c). This is a good place to add flags that you do not always need; for example"/compile:3"
(this is the default).
An example configuration might thus look like this:
;; Don't allow assumptions
(setq dafny-prover-custom-args '("/noCheating:1"))
;; Get more debug output when verifying with C-u C-c C-c
(setq dafny-prover-alternate-args '("/proverWarnings:2" "/traceverify" "/z3opt:TRACE=true" "/trace" "/traceTimes" "/tracePOs"))
The LANGUAGE-prover-local-args
is useful if a file requires specific flags (maybe /vcsMaxKeepGoingSplits
, for example): in that case you can set the LANGUAGE-prover-local-args
in just that file or in the corresponding directory.
For example, you can add the following to the top of a file:
// -*- dafny-prover-local-args: ("/vcsMaxKeepGoingSplits:5" "/proverMemoryLimit:250") -*-
-
If you run into trouble LSP, consider using the legacy Dafny server. If you run into issues with that, then the CLI-based verification backend should be fine, though slower (see instructions at the top of this README). You can also disable on-the-fly verification using
(setq dafny-verification-backend 'cli)
. -
If the verification seems to be taking forever,
M-x inferior-dafny-reset
may help when using the legacy server. With LSP, typing any character interrupts verification.
The documentation that ships with this package is auto-generated from the Dafny Quick Reference.
Clone the repo:
mkdir -p ~/.emacs.d/lisp/ && cd ~/.emacs.d/lisp/
git clone https://github.com/boogie-org/boogie-friends
Then in your .emacs (in addition to the stuff above):
(add-to-list 'load-path "~/.emacs.d/lisp/boogie-friends/emacs/")
(require 'dafny-mode)
(require 'boogie-mode)