Re: [Hol-info] grammar for HOL Light terms

2019-11-09 Thread Petros Papapanagiotou
Hi Brando, The HOL4 description manual has quite a bit of information, a lot of which is shared with HOL Light: http://sourceforge.net/projects/hol/files/hol/kananaskis-13/kananaskis-13-description.pdf/download I am not sure if there is a similar document for HOL Light. You can see the HOL Li

Re: [Hol-info] grammar for HOL Light terms

2019-11-09 Thread Mark Adams
And for HOL Zero there is Appendix C of the User Manual that gives a formal grammar of the HOL Zero concrete syntax. Again, this is fairly similar to HOL Light's and HOL4's, but there are numerous small differences. Note that the formal grammar hasn't actually been checked (as far as I'm awar

[Hol-info] [fm-announcements] NFM 2020 Call for papers

2019-11-09 Thread Mavridou, Anastasia (ARC-TI)[SGT, INC] via fm-announcements via hol-info
The Twelfth NASA Formal Methods Symposium https://ti.arc.nasa.gov/events/nfm-2020/ 11 - 15 May 2020 NASA Ames Research Center, Moffett Field, CA, USA Th

Re: [Hol-info] grammar for HOL Light terms

2019-11-09 Thread Norrish, Michael (Data61, Acton)
Every term in HOL can be summarised by the BNF term ::= var | const | term @ term | \v. term where @ is function application (and if you use concrete syntax, you don’t write the @), and \v. term represents a lambda-abstraction. If you want to programmatically generate terms, using this view