Mudskip

For our fourth year Dissertation, Toby and I made Mudskip, a symbolic theorem prover designed to reason with Natural Langauge statements through the derivation of dependent types, expressed in Agda. For example, Amber likes gouda and brie becomes:

postulate
  Entity : Set
  likes : Entity  Entity  Set
  isAmber : Entity  Set
  isGouda : Entity  Set
  isBrie : Entity  Set


record Amber : Set where
  constructor Amber
  field
    e : Entity
    p : isAmber e


record Gouda : Set where
  constructor Gouda
  field
    e : Entity
    p : isGouda e


record LikesAmberGouda : Set where
  constructor LikesAmberGouda
  field
    e : Amber
    e : Gouda
    p : likes (Amber.e e) (Gouda.e e)


record Brie : Set where
  constructor Brie
  field
    e : Entity
    p : isBrie e


record LikesAmberBrie : Set where
  constructor LikesAmberBrie
  field
    e : Amber
    e : Brie
    p : likes (Amber.e e) (Brie.e e)


record LikesAmberGouda×LikesAmberBrie : Set where
  constructor LikesAmberGouda×LikesAmberBrie
  field
    e : LikesAmberGouda
    e : LikesAmberBrie