Tagged Questions
Agda is a dependently typed total functional programming language and a proof assistant.
22
votes
1answer
921 views
Unsafe coerce and more efficient Agda code (-ftrust-me-im-agda)
On the Agda mailing list, Conor McBride asked:
is there any way to get hold of
operations like a putative
trustFromJust :: Maybe x -> x
which doesn't actually check for Just and ...
15
votes
4answers
1k views
proofs about regular expressions
Does anyone know any examples of the following?
Proof developments about regular expressions (possibly extended with backreferences) in proof assistants (such as Coq).
Programs in dependently-typed ...
9
votes
1answer
732 views
“Strictly positive” in Agda
I'm trying to encode some denotational semantics into Agda based on a program I wrote in Haskell.
data Value = FunVal (Value -> Value)
| PriVal Int
| ConVal Id [Value]
...
6
votes
2answers
196 views
Showing (head . init ) = head in Agda
I'm trying to prove a simple lemma in Agda, which I think is true.
If a vector has more than two elements, taking its head following taking the init is the same as taking its head immediately.
...
5
votes
1answer
102 views
Parametrized Inductive Types in Agda
I'm just reading Dependent Types at Work. In the introduction to parametrised types, the author mentions that in this declaration
data List (A : Set) : Set where
[] : List A
_::_ : A → List A → ...
4
votes
1answer
118 views
A definition for finite sets in Agda
I am new to Agda. I'm reading the paper "Dependent Types at Work" by Ana Bove and Peter Dybjer. I don't understand the discussion of Finite Sets (on page 15 in my copy).
The paper defines a Fin ...
3
votes
2answers
357 views
Working on Peano Axioms in Agda and hit a bit of a sticking point
PA6 : ∀{m n} -> m ≡ n -> n ≡ m
is the axiom I am trying to solve and support, I've tried using a cong (from the core library) but am having troubles with the cong constructor
PA6 = cong
...