axiom-developer
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Axiom musings...


From: Tim Daly
Subject: Re: Axiom musings...
Date: Sat, 18 Jul 2020 18:28:08 -0400

Richard Hamming gave a great talk. "You and Your Research"
https://www.youtube.com/watch?v=a1zDuOPkMSw

His big question is:

"What is the most important problem in your field
and why aren't you working on it?"

To my mind, the most important problem in the field of
computational mathematics is grounding computer
algebra in proofs.

Computer mathematical algorithms that "maybe,
possibly, give correct answers sometimes" is a problem.
Indeed, for computer algebra, it is the most important
problem. We need proven algorithms.

New algorithms, better graphics, better documentation,
are all "nice to have" but, as Hamming would say,
they are not "the most important problem".

Tim



On 7/2/20, Tim Daly <axiomcas@gmail.com> wrote:
> Time for another update.
>
> The latest Intel processors, available only to data centers
> so far, have a built-in FPGA. This allows you to design
> your own circuits and have them loaded "on the fly",
> running in parallel with the CPU.
>
> I bought a Lattice ICEstick FPGA development board. For
> the first time there are open source tools that support it so
> it is a great test bench for ideas and development. It is a
> USB drive so it can be easily ported to any PC.
> (https://www.latticesemi.com/products/developmentboardsandkits/icestick)
>
> I also bought a large Intel Cyclone FPGA development board.
> (http://www.terasic.com.tw/cgi-bin/page/archive.pl?Language=English&No=836)
> which has 2 embedded ARM processors. Unfortunately
> the tools (which are freely available) are not open source.
> It has sufficient size and power to do anything.
>
>
> I've got 2 threads of work in progress, both of which
> involve FPGAs (Field Programmable Gate Arrays).
>
> Thread 1
>
> The first thread involves proving programs correct. Once
> a proof has been made it is rather easier to check the proof.
> If code is shipped with a proof, the proof can be loaded into
> an FPGA running a proof-checker which verifies the program
> in parallel with running the code on the CPU.
>
> I am researching the question of writing a proof checker that
> runs on an FPGA, thus verifying the code "down to the metal".
> The Lean proof checker is the current target.
>
> The idea is to make "Oracle" algorithms that, because they
> are proven correct and verified at runtime, can be trusted
> by other mathematical software (e.g. Lean, Coq, Agda)
> when used in proofs.
>
> Thread 2
>
>
> The second thread involves arithmetic. Axiom currently ships
> with numeric routines (BLAS and LAPACK, see bookvol10.5).
> These routines have a known set of numeric failures such as
> cancellation, underflow, and scaling.
>
> John Gustafson has designed a 'unum' numeric format that can
> eliminate many of these errors. (See
> Gustafson, John "The End of Error" CRC Press 2015
> https://www.amazon.com/End-Error-Computing-Chapman-Computational/dp/1482239868/ref=sr_1_1?dchild=1&keywords=gustafson+the+end+of+error&qid=1593685423&sr=8-1)
>
> The research goal is to implement Axiom's floating-point
> arithmetic that can be offloaded onto an FPGA implementing
> the unum format. Such a system would radically simplify
> the implementation of BLAS and LAPACK as most of the
> errors can't occur. The impact would be similar to using
> multi-precision integer arithmetic, only now its floating-point.
>
> SANE, the greater goal.
>
> The Axiom SANE compiler / interpreter can use both of
> these tools to implement trusted mathematical software.
> It's a long, ambitious research effort but even if only pieces
> of it succeed, it changes computational mathematics.
>
> Tim
>
> "A person's reach should exceed their grasp,
> or what's a computer for?"  (misquoting Robert Browning)
>
> (https://www.quotetab.com/quote/by-robert-browning/ah-but-a-mans-reach-should-exceed-his-grasp-or-whats-a-heaven-for)
>
>
>
>
> On 6/16/20, Tim Daly <axiomcas@gmail.com> wrote:
>> WHY PROVE AXIOM CORRECT (SANE)?
>>
>> Historically, Axiom credits CLU, the Cluster language by
>> Barbara Liskov, with the essential ideas behind the Spad
>> language. Barbara gave a talk (a partial transcript below)
>> that gives the rational behind the ``where clause'' used by
>> Spad.
>>
>> She talks about the limits of the compile time capablity.
>> In particular, she says:
>>
>>    To go further, where we would say that T,
>>    in addition, has to be an equality relation, that requires
>>    much more sophisticated techniques that, even today, are
>>    beyond the capabilities of the compiler.
>>
>> Showing that the ``equal'' function satisfies the equality
>> relation is no longer ``beyond the capabilities of the compiler''.
>> We have the required formalisms and mechanisms to
>> prove properties at compile time.
>>
>> The SANE effort is essentially trying to push compile
>> time checking into proving that, for categories that use
>> ``equal'', we prove that the equal function implements
>> equality.
>>
>> I strongly encourage you to watch her video.
>>
>> Tim
>>
>> ===========================================
>> Barbara Liskov
>> May 2012
>> MIT CSAIL
>> Programming the Turing Machine
>> https://www.youtube.com/watch?v=ibRar7sWulM
>>
>> POLYMORPHISM
>>
>> We don't just want a set, we want polymorphism or
>> generics, as they are called today. We wanted to
>> have a generic set which was paramaterized by type
>> so you could instantiate it as:
>>
>> Set = [T:type] create, insert,...
>>   % representation for Set object
>>   % implementation of Set operations
>>   Set
>>
>> Set[int] s := Set[int]$create()
>> Set[int]$insert(s,3)
>>
>> We wanted a static solution to this problem. The
>> problem is, not every type makes sense as a parameter
>> to Set of T. For sets, per se, you need an equality
>> relation. If it has been a sorted set we would have
>> some ordering relation. And a type that didn't have
>> one of those things would not have been a legitimate
>> parameter. We needed a way of expressing that in a
>> compile-time, checkable manner. Otherwise we would
>> have had to resort to runtime checking.
>>
>> Our solution was
>>
>> Set = [T:  ] create, insert,...
>>   T equal: (T,T) (bool)
>>
>>
>> Our solution, what we call the ``where clause''. So we
>> added this to the header. The ``where clause'' tells you
>> what operations the parameter type has to have.
>>
>> If you have the ``where'' clause you can do the static
>> checking because when you instantiate, when you provide
>> an actual type, the compiler can check that the type has
>> the operations that are required. And then, when you write
>> the implementation of Set the compiler knows it's ok to
>> call those operations because you can guarantee they are
>> actually there when you get around to running.
>>
>> Of course, you notice that there's just syntax here; there's
>> no semantics.
>>
>> As I'm sure you all know, compile-time type checking is
>> basically a proof technique of a very limited sort and
>> this was about as far as we can push what you could get out of the
>> static analysis. To go further, where we would say that T,
>> in addition, has to be an equality relation, that requires
>> much more sophisticated techniques that, even today, are
>> beyond the capabilities of the compiler.
>>
>>
>>
>>
>> On 3/24/20, Tim Daly <axiomcas@gmail.com> wrote:
>>> I've spent entirely too much time studing the legal issues
>>> of free and open source software. There are copyright,
>>> trademark, and intellectual property laws. I have read
>>> several books, listened to lectures, and read papers on
>>> the subject. I've spoken to lawyers about it. I've even
>>> been required, by law, to coerce people I respect.
>>> You would think it was all perfectly clear. It isn't.
>>>
>>> The most entertaining and enlightening lectures were
>>> by Robert Lefkowitz at OSCON 2004. His talk is
>>> "The Semasiology of Open Source", which sounds
>>> horrible but I assure you, this is a real treat.
>>>
>>> THE THESIS
>>>
>>> Semasiology, n. The science of meanings or
>>> sense development (of words); the explanation
>>> of the development and changes of the meanings
>>> of words. Source: Webster's Revised Unabridged
>>> Dictionary, � 1996, 1998 MICRA, Inc.
>>>
>>> "Open source doesn't just mean access to the
>>> source code." So begins the Open Source Definition.
>>> What then, does access to the source code mean?
>>> Seen through the lens of an Enterprise user, what
>>> does open source mean? When is (or isn't) it
>>> significant? And a catalogue of open source
>>> related arbitrage opportunities.
>>>
>>> http://origin.conversationsnetwork.org/Robert%20Lefkowitz%20-%20The%20Semasiology%20of%20Open%20Source.mp3
>>>
>>> Computer source code has words and sentence
>>> structure like actual prose or even poetry. Writing
>>> code for the computer is like writing an essay. It
>>> should be written for other people to read,
>>> understand and modify. These are some of the
>>> thoughts behind literate programming proposed
>>> by Donald Knuth. This is also one of the ideas
>>> behind Open Source.
>>>
>>>  THE ANTITHESIS
>>>
>>> "Open Source" is a phrase like "Object Oriented"
>>> - weird at first, but when it became popular, the
>>> meaning began to depend on the context of the
>>> speaker or listener. "Object Oriented" meant that
>>> PERL, C++, Java, Smalltalk, Basic and the newest
>>> version of Cobol are all "Object Oriented" - for some
>>> specific definition of "Object Oriented". Similar is
>>> the case of the phrase "Open Source".
>>>
>>> In Part I, Lefkowitz talked about the shift of the
>>> meaning of "Open Source" away from any reference
>>> to the actual "source code," and more towards other
>>> phases of the software development life cycle. In
>>> Part II, he returns to the consideration of the
>>> relationship between "open source" and the actual
>>> "source code," and reflects upon both the way
>>> forward and the road behind, drawing inspiration
>>> from Charlemagne, King Louis XIV, Donald Knuth,
>>> and others.
>>>
>>> http://origin.conversationsnetwork.org/ITC.OSCON05-RobertLefkowitz-2005.08.03.mp3
>>>
>>> THE SYNTHESIS
>>>
>>> In a fascinating synthesis, Robert “r0ml” Lefkowitz
>>> polishes up his exposition on the evolving meaning
>>> of the term ‘open source’. This intellectual joy-ride
>>> draws on some of the key ideas in artificial intelligence
>>> to probe the role of language, meaning and context
>>> in computing and the software development process.
>>> Like Wittgenstein’s famous thought experiment, the
>>> open source ‘beetle in a box’ can represent different
>>> things to different people, bearing interesting fruit for
>>> philosophers and software creators alike.
>>>
>>> http://itc.conversationsnetwork.org/audio/download/itconversations-1502.mp3
>>>
>>>
>>> On 3/7/20, Tim Daly <axiomcas@gmail.com> wrote:
>>>> I've pushed the lastest version of Axiom. The plan, followed
>>>> so far, is to push once a month on the 7th.
>>>>
>>>> After some chat room interactions it was brought home
>>>> again that the proof world really does not seem to like the
>>>> idea of proving programs correct. And, given that it was is
>>>> of the main Axiom goals and a point of friction during the fork,
>>>> the computer algebra world does not like the idea of proving
>>>> programs correct either.
>>>>
>>>> So the idea of "computational mathematics", which includes
>>>> both disciplines (as well as type theory) seems still a long
>>>> way off.
>>>>
>>>> Nevertheless, the primary change in these past and future
>>>> updates is focused on merging proof and computer algebra.
>>>>
>>>> Proof systems are able to split the problem of creating a
>>>> proof and the problem of verifying a proof, which is much
>>>> cheaper. Ideally the proof checker would run on verified
>>>> hardware so the proof is checked "down to the metal".
>>>>
>>>> I have a background in Field Programmable Gate Arrays
>>>> (FPGAs) as I tried to do a startup using them. So now I'm
>>>> looking at creating a hardware proof checker using a
>>>> dedicated instruction set, one designed to be verifed.
>>>> New CPUs used in data centers (not yet available to us
>>>> mortals) have built-in FPGAs so it would be possible to
>>>> "side-load" a proof of a program to be checked while the
>>>> program is run. I have the FPGA and am doing a gate-level
>>>> special instruction design for such a proof checker.
>>>>
>>>>
>>>> On 2/7/20, Tim Daly <axiomcas@gmail.com> wrote:
>>>>> As a mathematician, it is difficult to use a system like Axiom,
>>>>> mostly because it keeps muttering about Types. If you're not
>>>>> familiar with type theory (most mathematicians aren't) then it
>>>>> seems pointless and painful.
>>>>>
>>>>> So Axiom has a steep learning curve.
>>>>>
>>>>> As a mathematician with an algorithmic approach, it is difficult
>>>>> to use a system like Axiom, mostly because you have to find
>>>>> or create "domains" or "packages", understand categories
>>>>> with their inheritance model, and learn a new language with
>>>>> a painful compiler always complaining about types.
>>>>>
>>>>> So Axiom has a steep learning curve.
>>>>>
>>>>> The Sane version of Axiom requires knowing the mathematics.
>>>>> It also assumes a background in type theory, inductive logic,
>>>>> homotopy type theory, ML (meta-language, not machine
>>>>> learning (yet)), interactive theorem proving, kernels, tactics,
>>>>> and tacticals. Also assumed is knowledge of specification languages,
>>>>> Hoare triples, proof techniques, soundness, and completeness.
>>>>> Oh, and there is a whole new syntax and semantics added to
>>>>> specify definitions, axioms, and theorems, not to mention whole
>>>>> libraries of the same.
>>>>>
>>>>> So Axiom Sane has a steep learning curve.
>>>>>
>>>>> I've taken 10 courses at CMU and spent the last 4-5 years
>>>>> learning to read the leading edge literature (also known
>>>>> as "greek studies", since every paper has pages of greek).
>>>>>
>>>>> I'm trying to unify computer algebra and proof theory into a
>>>>> "computational mathematics" framework. I suspect that the only
>>>>> way this system will ever be useful is after Universities have a
>>>>> "Computational Mathematics" major course of study and degree.
>>>>>
>>>>> Creating a new department is harder than creating Axiom Sane
>>>>> because, you know, ... people.
>>>>>
>>>>> I think such a department is inevitable given the deep and wide
>>>>> impact of computers, just not in my lifetime. That's ok. When I
>>>>> started programming there was no computer science degree.
>>>>>
>>>>> Somebody has to be the first lemming over the cliff.
>>>>>
>>>>> Tim
>>>>>
>>>>> On 1/9/20, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>> When Axiom Sane is paired with a proof checker (e.g. with Lean)
>>>>>> there is a certain amount of verification that is involved.
>>>>>>
>>>>>> Axiom will provide proofs (presumably validated by Lean) for its
>>>>>> algorithms. Ideally, when a computation is requested from Lean
>>>>>> for a GCD, the result as well as a proof of the GCD algorithm is
>>>>>> returned. Lean can the verify that the proof is valid. But it is
>>>>>> computationally more efficient if Axiom and Lean use a cryptographic
>>>>>> hash, such as SHA1. That way the proof doesn't need to be
>>>>>> 'reproven', only a hash computation over the proof text needs to
>>>>>> be performed. Hashes are blazingly fast. This allows proofs to be
>>>>>> exchanged without re-running the proof mechanism. Since a large
>>>>>> computation request from Lean might involve many algorithms
>>>>>> there would be considerable overhead to recompute each proof.
>>>>>> A hash simplifies the issue yet provides proof integrity.
>>>>>>
>>>>>> Tim
>>>>>>
>>>>>>
>>>>>> On 1/9/20, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>>> Provisos.... that is, 'formula SUCH pre/post-conditions'
>>>>>>>
>>>>>>> A computer algebra system ought to know and ought to provide
>>>>>>> information about the domain and range of a resulting formula.
>>>>>>> I've been pushing this effort since the 1980s (hence the
>>>>>>> SuchThat domain).
>>>>>>>
>>>>>>> It turns out that computing with, carrying, and combining this
>>>>>>> information is difficult if not impossible in the current system.
>>>>>>> The information isn't available and isn't computed. In that sense,
>>>>>>> the original Axiom system is 'showing its age'.
>>>>>>>
>>>>>>> In the Sane implementation the information is available. It is
>>>>>>> part of the specification and part of the proof steps. With a
>>>>>>> careful design it will be possible to provide provisos for each
>>>>>>> given result that are carried with the result for use in further
>>>>>>> computation.
>>>>>>>
>>>>>>> This raises interesting questions to be explored. For example,
>>>>>>> if the formula is defined over an interval, how is the interval
>>>>>>> arithmetic handled?
>>>>>>>
>>>>>>> Exciting research ahead!
>>>>>>>
>>>>>>> Tim
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On 1/3/20, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>>>> Trusted Kernel... all the way to the metal.
>>>>>>>>
>>>>>>>> While building a trusted computer algebra system, the
>>>>>>>> SANE version of Axiom, I've been looking at questions of
>>>>>>>> trust at all levels.
>>>>>>>>
>>>>>>>> One of the key tenets (the de Bruijn principle) calls for a
>>>>>>>> trusted kernel through which all other computations must
>>>>>>>> pass. Coq, Lean, and other systems do this. They base
>>>>>>>> their kernel  on logic like the Calculus of Construction or
>>>>>>>> something similar.
>>>>>>>>
>>>>>>>> Andrej Bauer has been working on a smaller kernel (a
>>>>>>>> nucleus) that separates the trust from the logic. The rules
>>>>>>>> for the logic can be specified as needed but checked by
>>>>>>>> the nucleus code.
>>>>>>>>
>>>>>>>> I've been studying Field Programmable Gate Arrays (FPGA)
>>>>>>>> that allow you to create your own hardware in a C-like
>>>>>>>> language (Verilog). It allows you to check the chip you build
>>>>>>>> all the way down to the transistor states. You can create
>>>>>>>> things as complex as a whole CPU or as simple as a trusted
>>>>>>>> nucleus. (youtube: Building a CPU on an FPGA). ACL2 has a
>>>>>>>> history of verifying hardware logic.
>>>>>>>>
>>>>>>>> It appears that, assuming I can understand Bauers
>>>>>>>> Andromeda system, it would be possible and not that hard
>>>>>>>> to implement a trusted kernel on an FPGA the size and
>>>>>>>> form factor of a USB stick.
>>>>>>>>
>>>>>>>> Trust "down to the metal".
>>>>>>>>
>>>>>>>> Tim
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> On 12/15/19, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>>>>> Progress in happening on the new Sane Axiom compiler.
>>>>>>>>>
>>>>>>>>> Recently I've been musing about methods to insert axioms
>>>>>>>>> into categories so they could be inherited like signatures.
>>>>>>>>> At the moment I've been thinking about adding axioms in
>>>>>>>>> the same way that signatures are written, adding them to
>>>>>>>>> the appropriate categories.
>>>>>>>>>
>>>>>>>>> But this is an interesting design question.
>>>>>>>>>
>>>>>>>>> Axiom already has a mechanism for inheriting signatures
>>>>>>>>> from categories. That is, we can bet a plus signature from,
>>>>>>>>> say, the Integer category.
>>>>>>>>>
>>>>>>>>> Suppose we follow the same pattern. Currently Axiom
>>>>>>>>> inherits certain so-called "attributes", such as
>>>>>>>>> ApproximateAttribute,
>>>>>>>>> which implies that the results are only approximate.
>>>>>>>>>
>>>>>>>>> We could adapt the same mechnaism to inherit the Transitive
>>>>>>>>> property by defining it in its own category. In fact, if we
>>>>>>>>> follow Carette and Farmer's "tiny theories" architecture,
>>>>>>>>> where each property has its own inheritable category,
>>>>>>>>> we can "mix and match" the axioms at will.
>>>>>>>>>
>>>>>>>>> An "axiom" category would also export a function. This function
>>>>>>>>> would essentially be a "tactic" used in a proof. It would modify
>>>>>>>>> the proof step by applying the function to the step.
>>>>>>>>>
>>>>>>>>> Theorems would have the same structure.
>>>>>>>>>
>>>>>>>>> This allows theorems to be constructed at run time (since
>>>>>>>>> Axiom supports "First Class Dynamic Types".
>>>>>>>>>
>>>>>>>>> In addition, this design can be "pushed down" into the Spad
>>>>>>>>> language so that Spad statements (e.g. assignment) had
>>>>>>>>> proof-related properties. A range such as [1..10] would
>>>>>>>>> provide explicit bounds in a proof "by language definition".
>>>>>>>>> Defining the logical properties of language statements in
>>>>>>>>> this way would make it easier to construct proofs since the
>>>>>>>>> invariants would be partially constructed already.
>>>>>>>>>
>>>>>>>>> This design merges the computer algebra inheritance
>>>>>>>>> structure with the proof of algorithms structure, all under
>>>>>>>>> the same mechanism.
>>>>>>>>>
>>>>>>>>> Tim
>>>>>>>>>
>>>>>>>>> On 12/11/19, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>>>>>> I've been reading Stephen Kell's (Univ of Kent
>>>>>>>>>> https://www.cs.kent.ac.uk/people/staff/srk21/) on
>>>>>>>>>> Seven deadly sins of talking about “types”
>>>>>>>>>> https://www.cs.kent.ac.uk/people/staff/srk21//blog/2014/10/07/
>>>>>>>>>>
>>>>>>>>>> He raised an interesting idea toward the end of the essay
>>>>>>>>>> that type-checking could be done outside the compiler.
>>>>>>>>>>
>>>>>>>>>> I can see a way to do this in Axiom's Sane compiler.
>>>>>>>>>> It would be possible to run a program over the source code
>>>>>>>>>> to collect the information and write a stand-alone type
>>>>>>>>>> checker. This "unbundles" type checking and compiling.
>>>>>>>>>>
>>>>>>>>>> Taken further I can think of several other kinds of checkers
>>>>>>>>>> (aka 'linters') that could be unbundled.
>>>>>>>>>>
>>>>>>>>>> It is certainly something to explore.
>>>>>>>>>>
>>>>>>>>>> Tim
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On 12/8/19, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>>>>>>> The Axiom Sane compiler is being "shaped by the hammer
>>>>>>>>>>> blows of reality", to coin a phrase.
>>>>>>>>>>>
>>>>>>>>>>> There are many goals. One of the primary goals is creating a
>>>>>>>>>>> compiler that can be understood, maintained, and modified.
>>>>>>>>>>>
>>>>>>>>>>> So the latest changes involved adding multiple index files.
>>>>>>>>>>> These are documentation (links to where terms are mentioned
>>>>>>>>>>> in the text), code (links to the implementation of things),
>>>>>>>>>>> error (links to where errors are defined), signatures (links to
>>>>>>>>>>> the signatures of lisp functions), figures (links to figures),
>>>>>>>>>>> and separate category, domain, and package indexes.
>>>>>>>>>>>
>>>>>>>>>>> The tikz package is now used to create "railroad diagrams"
>>>>>>>>>>> of syntax (ala, the PASCAL report). The implementation of
>>>>>>>>>>> those diagrams follows immediately. Collectively these will
>>>>>>>>>>> eventually define at least the syntax of the language. In the
>>>>>>>>>>> ideal, changing the diagram would change the code but I'm
>>>>>>>>>>> not that clever.
>>>>>>>>>>>
>>>>>>>>>>> Reality shows up with the curent constraint that the
>>>>>>>>>>> compiler should accept the current Spad language as
>>>>>>>>>>> closely as possible. Of course, plans are to include new
>>>>>>>>>>> constructs (e.g. hypothesis, axiom, specification, etc)
>>>>>>>>>>> but these are being postponed until "syntax complete".
>>>>>>>>>>>
>>>>>>>>>>> All parse information is stored in a parse object, which
>>>>>>>>>>> is a CLOS object (and therefore a Common Lisp type)
>>>>>>>>>>> Fields within the parse object, e.g. variables are also
>>>>>>>>>>> CLOS objects (and therefore a Common Lisp type).
>>>>>>>>>>> It's types all the way down.
>>>>>>>>>>>
>>>>>>>>>>> These types are being used as 'signatures' for the
>>>>>>>>>>> lisp functions. The goal is to be able to type-check the
>>>>>>>>>>> compiler implementation as well as the Sane language.
>>>>>>>>>>>
>>>>>>>>>>> The parser is designed to "wrap around" so that the
>>>>>>>>>>> user-level output of a parse should be the user-level
>>>>>>>>>>> input (albeit in a 'canonical" form). This "mirror effect"
>>>>>>>>>>> should make it easy to see that the parser properly
>>>>>>>>>>> parsed the user input.
>>>>>>>>>>>
>>>>>>>>>>> The parser is "first class" so it will be available at
>>>>>>>>>>> runtime as a domain allowing Spad code to construct
>>>>>>>>>>> Spad code.
>>>>>>>>>>>
>>>>>>>>>>> One plan, not near implementation, is to "unify" some
>>>>>>>>>>> CLOS types with the Axiom types (e.g. String). How
>>>>>>>>>>> this will happen is still in the land of design. This would
>>>>>>>>>>> "ground" Spad in lisp, making them co-equal.
>>>>>>>>>>>
>>>>>>>>>>> Making lisp "co-equal" is a feature, especially as Spad is
>>>>>>>>>>> really just a domain-specific language in lisp. Lisp
>>>>>>>>>>> functions (with CLOS types as signatures) would be
>>>>>>>>>>> avaiable for implementing Spad functions. This not
>>>>>>>>>>> only improves the efficiency, it would make the
>>>>>>>>>>> BLAS/LAPACK (see volume 10.5) code "native" to Axiom.
>>>>>>>>>>> .
>>>>>>>>>>> On the theory front I plan to attend the Formal Methods
>>>>>>>>>>> in Mathematics / Lean Together conference, mostly to
>>>>>>>>>>> know how little I know, especially that I need to know.
>>>>>>>>>>> http://www.andrew.cmu.edu/user/avigad/meetings/fomm2020/
>>>>>>>>>>>
>>>>>>>>>>> Tim
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> On 11/28/19, Jacques Carette <carette@mcmaster.ca> wrote:
>>>>>>>>>>>> The underlying technology to use for building such an algebra
>>>>>>>>>>>> library
>>>>>>>>>>>> is
>>>>>>>>>>>> documented in the paper " Building on the Diamonds between
>>>>>>>>>>>> Theories:
>>>>>>>>>>>> Theory Presentation Combinators"
>>>>>>>>>>>> http://www.cas.mcmaster.ca/~carette/publications/tpcj.pdf
>>>>>>>>>>>> [which
>>>>>>>>>>>> will
>>>>>>>>>>>> also be on the arxiv by Monday, and has been submitted to a
>>>>>>>>>>>> journal].
>>>>>>>>>>>>
>>>>>>>>>>>> There is a rather full-fledged prototype, very well documented
>>>>>>>>>>>> at
>>>>>>>>>>>> https://alhassy.github.io/next-700-module-systems/prototype/package-former.html
>>>>>>>>>>>>
>>>>>>>>>>>> (source at https://github.com/alhassy/next-700-module-systems).
>>>>>>>>>>>> It
>>>>>>>>>>>> is
>>>>>>>>>>>> literate source.
>>>>>>>>>>>>
>>>>>>>>>>>> The old prototype was hard to find - it is now at
>>>>>>>>>>>> https://github.com/JacquesCarette/MathScheme.
>>>>>>>>>>>>
>>>>>>>>>>>> There is also a third prototype in the MMT system, but it does
>>>>>>>>>>>> not
>>>>>>>>>>>> quite
>>>>>>>>>>>> function properly today, it is under repair.
>>>>>>>>>>>>
>>>>>>>>>>>> The paper "A Language Feature to Unbundle Data at Will"
>>>>>>>>>>>> (https://alhassy.github.io/next-700-module-systems/papers/gpce19_a_language_feature_to_unbundle_data_at_will.pdf)
>>>>>>>>>>>>
>>>>>>>>>>>> is also relevant, as it solves a problem with parametrized
>>>>>>>>>>>> theories
>>>>>>>>>>>> (parametrized Categories in Axiom terminology) that all current
>>>>>>>>>>>> systems
>>>>>>>>>>>> suffer from.
>>>>>>>>>>>>
>>>>>>>>>>>> Jacques
>>>>>>>>>>>>
>>>>>>>>>>>> On 2019-11-27 11:47 p.m., Tim Daly wrote:
>>>>>>>>>>>>> The new Sane compiler is also being tested with the Fricas
>>>>>>>>>>>>> algebra code. The compiler knows about the language but
>>>>>>>>>>>>> does not depend on the algebra library (so far). It should be
>>>>>>>>>>>>> possible, by design, to load different algebra towers.
>>>>>>>>>>>>>
>>>>>>>>>>>>> In particular, one idea is to support the "tiny theories"
>>>>>>>>>>>>> algebra from Carette and Farmer. This would allow much
>>>>>>>>>>>>> finer grain separation of algebra and axioms.
>>>>>>>>>>>>>
>>>>>>>>>>>>> This "flexible algebra" design would allow things like the
>>>>>>>>>>>>> Lean theorem prover effort in a more natural style.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Tim
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 11/26/19, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>>>>>>>>>> The current design and code base (in bookvol15) supports
>>>>>>>>>>>>>> multiple back ends. One will clearly be a common lisp.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Another possible design choice is to target the GNU
>>>>>>>>>>>>>> GCC intermediate representation, making Axiom "just
>>>>>>>>>>>>>> another front-end language" supported by GCC.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> The current intermediate representation does not (yet)
>>>>>>>>>>>>>> make any decision about the runtime implementation.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Tim
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 11/26/19, Tim Daly <axiomcas@gmail.com> wrote:
>>>>>>>>>>>>>>> Jason Gross and Adam Chlipala ("Parsing Parses") developed
>>>>>>>>>>>>>>> a dependently typed general parser for context free grammar
>>>>>>>>>>>>>>> in Coq.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> They used the parser to prove its own completeness.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Unfortunately Spad is not a context-free grammar.
>>>>>>>>>>>>>>> But it is an intersting thought exercise to consider
>>>>>>>>>>>>>>> an "Axiom on Coq" implementation.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Tim
>>>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]