Andrej Dudenhefner
Andrej Dudenhefner
> In that case, I would only migrate the current living branch, namely the `coq-8.17` branch. For migration, I'd suggest the `master` branch, which will be `coq-8.18` (I guess we...
The combination of all - `Proper (eq ==> lt ==> lt) add` - `Proper (lt ==> eq ==> lt) add` - `Proper (lt ==> lt ==> lt) add` - `Proper...
> @mrhaandi I will gladly remove those instances, but could you explain why this would lead to poor performance? Having every possible combination of `le`, `lt`, `eq` as hint introduces...
Here is a related discrepancy with `fix`, which could possibly help to debug the issue: ```coq Goal unit -> unit. Proof. refine (fix F (H : unit) : unit :=...
I'm not sure whether eta is the exact issue here. The following code does not fail. ```coq Goal unit -> unit. Proof. fix F 1. Show Proof. (* (fix F...