HOL icon indicating copy to clipboard operation
HOL copied to clipboard

Canonical sources for HOL4 theorem-proving system. Branch develop is where “mainline development” occurs; when develop passes our regression tests, master is merged forward to catch up.

Results 138 HOL issues
Sort by recently updated
recently updated
newest added

The function `DB.find` function does a substring match. Why not extend to allow the string to be a regular expression. Along the way, we should allow an operator to allow...

Feature Request
Good first issue

Rather than just ``` ‘foo = bar’ by tac1 >> ‘_ = baz’ by tac2 >> ``` it should be possible to have stuff like ``` ‘foo = bar’ by...

Feature Request
Tactics/DPs

Consider different behaviours of these three: ``` rw[Once FUNPOW] ([], ``p (FUNPOW f (SUC n) x) /\ q (FUNPOW g (SUC n) y)``); simp[Once FUNPOW] ([], ``p (FUNPOW f (SUC...

Tactics/DPs

It's clearly useful to be able to see exactly what term is hiding underneath the `fld` of something like `r.fld`.

Printing-Parsing
Feature Request

In particular, I think it should be possible to isolate sub-terms that include the excess type variables without just including the whole of the definition.

Feature Request

Similar to #488 but less extreme: Could we have a cache of theorems that have been proved before so that when this option is turned on any attempts to prove...

Feature Request

For `\HOLthm` and `\HOLtm`, it would be nice to “omit” certain sub-terms by specifying those terms in the optional arguments part of the command. Here “omit” means replace by “...”...

Feature Request

Support syntax for list comprehensions along the lines of ``` [ x + 1 | x α list -> β list`. This would then allow ``` [ x + y...

Printing-Parsing
Feature Request

When parsing, the system doesn't do a paired β-reduction, and when printing, it doesn't recognise the term as an abstraction, and so fails to do any useful pattern-matching.

Printing-Parsing
Feature Request

```` > Datatype`rcd = > val it = “∀x::r.fld. P x”: term ```` The printer should invert the parser here; without parentheses around the `r.fld`, the parser will fail to...

Printing-Parsing
Bug