Alexander Stekelenburg

Results 23 issues of Alexander Stekelenburg

I would love to see the command palete. In windows and Linux you open it with ctrl+p and on mac with ⌘⇧P

feature

Maybe a menu for keybinding.

feature

This draft PR is here to share my current progress and is not ready to be merged yet.

I think I should maybe add some more comments but this is what I have so far. For challenge 1 it's only version 0 and for challenge 2 it's only...

According to the wiki: >VerCors also supports a refute statement, which is the opposite of assert. Internally, refute expr; is transformed into assert !(expr);, i.e. asserting the negation. Note that...

A-Bug
B-Viper

Currently you can only take the address of a struct in the C and C++ frontends. By converting variables to pointers whenever you take their address you can do the...

I noticed that state consolidation only merges basic chunks. I've been running into issues where if I have a lot of quantified field chunks things become very slow. In particular...

The following method only seems to verify if I use `--useOldAxiomatization`: ``` method lemmaUniquenessPrefix(s1: Seq[Bool], s2: Seq[Bool], prefix: Seq[Bool]) ensures (s1 == s2) == (prefix ++ s1 == prefix ++...

I just figured out a way in which AutoValue is a bit unsound if we have an abstract method like this: ```java class A { int a; int b; }...

Checklist: - [ ] The wiki is updated in accordance with the changes in this PR. For example: syntax changes, semantics changes, VerCors flags changes, etc. # PR description The...