Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add code for generating and working with quotients #43

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

WhatisRT
Copy link
Contributor

This adds some generic code for dealing with (extensional) quotients

@clayrat clayrat self-requested a review August 27, 2019 14:38
@clayrat
Copy link
Member

clayrat commented Aug 27, 2019

I'm not sure where are you using Singleton, but there's an interface for such things in contrib: https://github.com/idris-lang/Idris-dev/blob/master/libs/contrib/Interfaces/Proposition.idr

@WhatisRT
Copy link
Contributor Author

Oh, Singleton is a leftover from a previous try. Good to know that Proposition is a thing!

Copy link
Member

@fredrikNordvallForsberg fredrikNordvallForsberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One thing that could be nice would be to do the right %access incantations in UnsafeQuotient so that the commuting triangle in exists would commute pointwise.

It might also be worth it to split up the dependent pair in exists into two fields in the record, since this is the way to define functions out of the quotient.

module Quotients

import Quotient.Quotient

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this module use %access public export?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, forgot that.

(QuotientType x eq)
(Wrap ** (\a, b, h => QuotientEquality x eq h))
(\y, f => ((\a => fst f $ unwrap a) ** (\a => Refl)))
(\y, f, g, h, a => trans (cong $ wrapUnwrapId a) (sym $ h $ unwrap a))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
(\y, f, g, h, a => trans (cong $ wrapUnwrapId a) (sym $ h $ unwrap a))
(\y, f, g, h, (InternalWrap a) => sym $ h a)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I find these things very weird. In the previous line where I use unwrap, I cannot pattern match in the lambda, while in this line I can. The only reason why unwrap exists is because it didn't work there for me. Do you or @clayrat have any insight as to what might be the issue there?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As for the dependent pair, do you mean that it would be nicer if we didn't have to write fst $ exists ...? In that case, I'd just define another function.

Concretely, I suggest to replace the exists field with the following two fields (possibly with better chosen names):

  extension : (y : Type) -> (f : RespectingMap x y eq)
           -> carrier -> y
  commutes : (y : Type) -> (f : RespectingMap x y eq)
          -> extEq (fst f) (extension y f . (fst proj))

Why?

  1. Most of the time, the function extension y f is probably what you want easy access to (what I tried to say above).
  2. Should make it easier to build things stepwise using holes, because Idris doesn't need to juggle sigma types and first projections etc.
  3. Might make it easier to talk about the code, e.g. 'the commuting triangle in exists' above is the commutes field.

I'm not sure what you mean by 'the commuting triangle in exists would commute pointwise'.

What I meant was that in the Quotients.Unsafe module, the proof of commutes y f a is Refl for every a, which is nice, but outside this module, nothing reduces anymore.

Wrap : x -> QuotientType x eq
Wrap = InternalWrap

unwrap : QuotientType x eq -> x

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably best not to export unwrap, as it corresponds to a form of global axiom of choice?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, completely missed that.

@WhatisRT
Copy link
Contributor Author

I'm not sure what you mean by 'the commuting triangle in exists would commute pointwise'.

As for the dependent pair, do you mean that it would be nicer if we didn't have to write fst $ exists ...? In that case, I'd just define another function.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants