| CARVIEW |
Select Language
HTTP/2 200
cross-origin-resource-policy: cross-origin
etag: W/"f0b033312542da7593ac596518934a25c05eeffcabc3b21278834f8fa5bc3850"
date: Fri, 16 Jan 2026 01:52:07 GMT
content-type: application/atom+xml; charset=UTF-8
server: blogger-renderd
expires: Fri, 16 Jan 2026 01:52:08 GMT
cache-control: public, must-revalidate, proxy-revalidate, max-age=1
x-content-type-options: nosniff
x-xss-protection: 0
last-modified: Wed, 13 Mar 2024 16:33:09 GMT
content-encoding: gzip
content-length: 4293
x-frame-options: SAMEORIGIN
alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
tag:blogger.com,1999:blog-32922462 2024-03-13T16:33:09.075+00:00 Setoids and Cats Robin https://www.blogger.com/profile/05420921538604886480 noreply@blogger.com Blogger 2 1 25 tag:blogger.com,1999:blog-32922462.post-115627278400420146 2006-08-22T19:35:00.000+01:00 2006-08-22T19:53:04.016+01:00 Formalising a High-Performance Microkernel These guys have made a prototype of an embedded OS microkernel in Haskell (which they then attached to an ARM CPU simulator so that it could execute programs), "verified the API design" by translating the Haskell implementation into Isabelle/HOL (a formal proof assistant), and then actually implemented the microkernel in C. Cool stuff!<br /><br /><blockquote><div class="head"> <h2>Formalising a High-Performance Microkernel</h2> <div class="authors"> <a href="https://www.cse.unsw.edu.au/%7Ekevine/">Kevin Elphinstone</a>, <a href="https://www.doclsf.de/index.html">Gerwin Klein</a> and <a href="https://www.cse.unsw.edu.au/%7Erafalk/">Rafal Kolanski</a> </div> </div> <h2>Abstract</h2> <div class="abstract"> This paper argues that a pragmatic approach is needed for integrating design and formalisation of complex systems. We report on our approach to designing the seL4 operating system microkernel API and its formalisation in Isabelle/HOL. The formalisation consists of the systematic translation of significant parts of the functional programming language Haskell into Isabelle/HOL, including monad-based code. We give an account of the experience, decisions and outcomes in this translation as well as the technical problems we encountered together with our solutions. The longer-term goal is to demonstrate that formalisation and verification of a large, complex, OS-level code base is feasible with current tools and methods and is in the order of magnitude of traditional development cost. </div> <h2>Online Copy</h2> <div class="download"> Available as <a href="https://www.doclsf.de/papers/vstte06.pdf">[PDF]</a> </div><br /></blockquote> Robin https://www.blogger.com/profile/05420921538604886480 noreply@blogger.com 0 tag:blogger.com,1999:blog-32922462.post-115593452528955867 2006-08-18T21:54:00.000+01:00 2006-08-18T23:27:45.323+01:00 Types-as-values suggest setoids-as-metatypes In this blog, I will be (to start with, at least) mainly talking about my work on simulating dependent types in <a href="https://www.haskell.org/">Haskell</a>, and using these simulated dependent types to prove theorems and to prove properties of code.<br /><br />Genuine dependent types (as in, e.g., <a href="https://pvs.csl.sri.com/">PVS</a>) refer to one or more values. Since Haskell does not allow mixing of types and values, it is not possible to have genuine dependent types in Haskell; however, we can simulate them. The basic idea is to "lift" individual values to the type level - something like this, for example (this code snippet uses a Glasgow extension to Haskell - hence the compiler options pragma):<br /><br /><span style="font-family:courier new;">{-# OPTIONS_GHC -fglasgow-exts #-}<br /><br />-- Zero exists<br />data Zero = Zero<br />-- The successor of n exists iff n is a natural number<br />data Succ n = Succ (Nat n)<br /><br />data Nat n where<br />-- Zero is a natural number<br /> NatZero :: Nat Zero<br />-- If m is a natural number, then so is its successor<br /> NatSucc :: Nat m -> Nat (Succ m)<br /></span><br />Because <span style="font-family:courier new;">Zero</span> and <span style="font-family:courier new;">Succ Zero</span> and so on are type-level representations of values (in particular, the values 0 and 1) I call them <span style="font-style: italic;">metaterms.</span> Because Nat is a type constructor that classifies metaterms, I call it a <span style="font-style: italic;">metatype</span>. So terms are "lifted" to metaterms, and types are "lifted" to metatypes, in my approach.<br /><br />However, the approach I'm following is a little more complicated than the code sample shown above. The reason why has to do with <span style="font-style: italic;">equality </span>(a thorny topic that I'll be elaborating on in my next post).<br /><br />I initially thought that it would be sufficient to treat metaterms of most metatypes as equal iff their representations as Haskell types were treated as identical by the compiler. Clearly, a metaterm such as <span style="font-family:courier new;">Succ (Succ Zero)</span> should be treated as equal only to itself, I thought.<br /><br />However, there is one clear exception which doesn't fit this pattern, which I encountered early on: <span style="font-style: italic;">functions.</span> As a <a href="https://en.wikipedia.org/wiki/Formal_methods">formal methods</a> person, I would like to be able to specify arbitrary <a href="https://en.wikipedia.org/wiki/Postcondition">postconditions</a> of functions. However, a typical postcondition - because it is just a <a href="https://en.wikipedia.org/wiki/Relation_%28mathematics%29">relation</a> between the inputs and outputs of a function - can be constructed in many different, equivalent ways. We would like to be able to abstract away from the particular representation of postconditions, and consider two postconditions to be equal iff they represent "the same" relation between inputs and outputs.<br /><br />When are two relations the same? If we model a relation as a set of tuples, we can consider two relations to be the same if they are modelled by the same set. However, we have to be careful about the definition of equality used for the elements of the tuples. The relation might, for example, be between two functions - in which case we would want to consider a function with a postcondition of "f(x) == 2x" as equal to a function with a postcondition of "f(x) == x+x". In other words, when considering equality of higher-order functions, we need to apply our notion of equality <span style="font-style: italic;">recursively</span> to postconditions.<br /><br />So my next idea was to create a <a href="https://en.wikibooks.org/wiki/Haskell/GADT">generalised abstract data type</a> for equality, with two branches: one for ordinary, "identical type-level representation" equality, and one for equality of functions. You would use this GADT, which I called Equiv, as a universal equality relation.<br /><br />Of course, this hack wasn't good enough. It quickly became evident that the problem I had with functions carried over to many other data types - functors, categories, etc.<br /><br />So what to do? It wouldn't be modular to require developers to just add a new branch to Equiv whenever they wanted a custom equality relation defined over a new metatype. How ugly, and how unworkable - existing code would have to be updated every time a new branch was added, and it would expose irrelevant details to the whole system.<br /><br />My solution was to mandate that every metatype in my system was to represent a setoid of values. A setoid is simply a set together with an equivalence relation defined over that set. This way, <span style="font-weight: bold;">every metatype</span> carries around with it a definition of the precise conditions that need to be satisfied in order for two metaterms of that metatype to be considered equivalent.<br /><br />And in what I think is a nice piece of syntactic hackery (made possible by Haskell's ability to define not just operators on values, but also type operators), the notion of reflexivity:<br /><br /><span style="font-family:courier new;">a a1 a1 -- "a1 is equal to a1 under the equivalence relation given by a"<br /><br /></span>is quite literally equated with the meta-typing relation I have created<span style="font-family:courier new;"> ::*<br /><br />a1 ::* a -- "a1 is of (meta)type a"<br /><br /></span>This is because the definition of <span style="font-family:courier new;">::*</span> is a type synonym that looks like this (after expanding macros):<br /><br /><span style="font-family:courier new;">type (::*) (a1 :: *) (r :: * -> * -> *) = r a1 a1</span><br /><br />This does not cause any problems, because by definition, a value is equal to itself under the equivalence relation of the setoid iff the value is a member of the setoid. As a happy consequence, we don't need to state, and nor do we need to prove, the reflexivity law for equality relations - because it is true for all setoids by definition!<br /><br />However, my problems with equality weren't over - of which more next time. Robin https://www.blogger.com/profile/05420921538604886480 noreply@blogger.com 0