Samuel Gruetter

Results 56 issues of Samuel Gruetter

I got the following error message display in the response pane: ``` Error: containsProgram already ∃. ``` but I would prefer it to be: ``` Error: containsProgram already exists. ```...

```coq Notation "a -:" := (id a) (at level 9, format "a -:"). Lemma test(foo: nat) : foo-: = foo. ``` displays ``` foo : nat ============================ foo-: = foo...

The following file is accepted by PG: ```coq Goal False. Proof. {| Hello this is cool. {| Is this a new kind of comment? . {| Multi-line works as well!....

I can step through the following file in proof general without getting any errors: ```coq Goal True /\ True. Proof. split. { exact I. }. { exact I. }. Qed....

Not sure if this is a PG issue or an Ltac2 issue, but here's something that works fine in Ltac1 but not in Ltac2: ```coq Ltac wait1 n := idtac...

If I open this file, ```coq Goal False. Proof. ``` jump to the last line, and hit `C-c C-Enter`, the goals window remains empty. Desired behavior: It should show ```...

Hi QuickChick developers, congrats on the recent developments, I think QuickChick has become much cooler since I looked at it the last time :tada: (or maybe it's just that the...

enhancement

QuickChick version: 1.0.2 Coq version: 8.8.1 I realize this one might be tricky, but raising the issue anyways in case someone has a good idea: I'd like to use the...

bug

QuickChick version: 1.0.2 Coq version: 8.8.1 A small but annoying bug about the `quickChick` command line tool: It displays the counterexample before displaying the title `Checking LEMMA_NAME...`. Should be reproducible...

bug

If you run ``` grep -R . --include='*.v' -e 'TC_FAIL' -C7 ``` inside the directory https://github.com/samuelgruetter/counterexamples/tree/bda5b7dbd74ee873ca360b67c699482918f9d4e0/coq, you will find a few QuickChick queries marked with `TC_FAIL` where QuickChick fails to...

enhancement