Jason Gross
Jason Gross
- [ ] Added / updated **test-suite**. (is this needed here, since we're just exposing unerlying ml primitives?) - [x] Added **changelog**. - [ ] Added / updated **documentation**. (is...
- [ ] Added / updated **test-suite** (do we need it?) - [x] Added **changelog**. - [ ] Added / updated **documentation**. (do we need it?)
#### Description of the problem In particular it's not clear what the difference is between `let x := f () in Control.refine (fun () => x)` and `Control.refine f`. (And...
#### Description of the problem I'd like to have hash maps and hash sets where where keys (for map) / values (for sets) are the following types: - `ident` -...
#### Description of the problem In Gallina, `foo bar.(baz)` means `foo (bar.(baz))`. In Ltac2, it seems to mean `(foo bar).(baz)`. #### Coq Version 8.15
#### Description of the problem Finished failing transaction in 18.917 secs (18.809u,0.108s) (failure) Fatal error: exception Not_found Raised at Int.Map.find in [file "clib/int.ml", line 39](https://github.com/coq/coq/blob/V8.15.0/clib/int.ml#L39), characters 14-29 Called from HMap.Make.find...
#### Description of the problem This should work: ```coq Require Import Ltac2.Ltac2. Require Import Ltac2.Printf. Notation foo1 x := (ltac:(idtac x; exact I)) (only parsing). Notation bar1 y := (foo1...
I'd like to be able to write `Print Ltac2 Type exn`
#### Description of the problem I'd like to have a global setting that enables stack trace printing for Ltac2 errors. There should also be some support within the language for...
```agda module foo where module A where open import Agda.Primitive using (Set; Setω; Level; lzero; lsuc; _⊔_) public A : ∀ l -> Set (lsuc l) A l = Set...