Agda is a dependently typed, total functional programming language and a proof assistant.
0
votes
0answers
24 views
Agda install error Windows 7 64 bit [closed]
I am trying to install Agda on my Windows 7 Machine from http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Main.Windows (current version Agda-2.3.0.1-20121108-setup.exe). I have been using Haskell ...
2
votes
2answers
57 views
Imported datatype clashes with locally defined one, even when renamed
With the following Agda code, I get an error on the definition of B in A₂:
module Whatever where
module A₁ where
data B : Set where
module A₂ where
open A₁ renaming (B to B₁)
data B : Set ...
2
votes
1answer
62 views
Type error when trying to pattern-match on something that should be absurd anyway
In the middle of a type checker for the simply-typed lambda calculus, I have this:
check Γ (lam τ′ E) (τ₁ ↣ τ₂) with τ′ T≟ τ₁
check Γ (lam τ′ E) (τ₁ ↣ τ₂) | no ¬p = no lem
where
lem : ¬ Γ ⊢ lam ...
3
votes
1answer
111 views
Type Hierarchy in Agda
I am trying to figure out how type hierarchies work in Agda.
Assuming I define a set type X:
X : Set
and then proceed to constructing an inductive type
data Y : X -> Set where
What is the ...
5
votes
1answer
188 views
Agda: Pair of vectors that have the same length
In Agda, how can I define a pair of vectors that must have the same length?
-- my first try, but need to have 'n' implicitly
b : ∀ ( n : ℕ ) → Σ (Vec ℕ n) (λ _ → Vec ℕ n)
b 2 = (1 ∷ 2 ∷ []) , (3 ∷ ...
29
votes
2answers
724 views
Do Hask or Agda have equalisers?
I was somewhat undecided as to whether this was a math.SE question or an SO one, but I suspect that mathematicians in general are fairly unlikely to know or care much about this category in ...
10
votes
1answer
337 views
Recursion Schemes in Agda
Needless to say, the standard construction in Haskell
newtype Fix f = Fix { getFix :: f (Fix f) }
cata :: (Functor f) => (f a -> a) -> Fix f -> a
cata f = f . fmap (cata f) . getFix
...
7
votes
1answer
253 views
Agda: run function for Conor's stack example
At ICFP 2012, conor mcbride gave a keynote with the tile "Agda-curious?".
It featured a small stack machine implementation.
The video is on youtube:
http://www.youtube.com/watch?v=XGyJ519RY6Y
The ...
3
votes
3answers
239 views
Agda: Equivalence relation for sub-colists
I would like to define an equality on CoList (Maybe Nat)s that only takes the justs into account. Of course, I can't just go from CoList (Maybe A) to CoList A, because that wouldn't necessarily be ...
25
votes
2answers
1k views
Where to start with dependent type programming?
There is an Idris tutorial, an Agda tutorial and many other tutorial style papers and introductory material with never ending references to things yet to learn. I'm kind of crawling in the middle of ...
4
votes
1answer
131 views
Implicit arguments and applying a function to the tail-part of fixed-size-vectors
I wrote an Agda-function applyPrefix to apply a fixed-size-vector-function to the initial part of a longer vector where the vector-sizes m, n and k may stay implicit. Here's the definition together ...
9
votes
2answers
258 views
Haskell's Arrow-Class in Agda and -> in Agda
I have two closely related questions:
First, how can the Haskell's Arrow class be modeled / represented in Agda?
class Arrow a where
arr :: (b -> c) -> a b c
...
3
votes
1answer
167 views
Proofs involving decidable equality
I'm trying to prove some simple things about a function which uses decidable equality. Here is a much simplified example:
open import Relation.Nullary
open import Relation.Binary
open import ...
3
votes
2answers
140 views
Proof that (prev n) <= m starting from n <= m
I have the next definition:
data Nat : Set where
zero : Nat
succ : Nat -> Nat
prev : Nat -> Nat
prev zero = zero
prev (succ n) = n
data _<=_ : Nat -> Nat -> Set where
z<=n : ...
5
votes
1answer
189 views
Implicit length arguments in fixed-length-vector-functions in Agda
I wrote an Agda-function prefixApp which applies a Vector-Function to a prefix of a vector:
split : {A : Set}{m n : Nat} -> Vec A (n + m) -> (Vec A n) * (Vec A m)
split {_} {_} {zero} xs ...
9
votes
1answer
341 views
Agda Type-Checking and Commutativity / Associativity of +
Since the _+_-Operation for Nat is usually defined recursively in the first argument, its obviously non-trivial for the type-checker to know that i + 0 == i. However, I frequently run into this issue ...
14
votes
2answers
297 views
Why inductive datatypes forbid types like `data Bad a = C (Bad a -> a)` where the type recursion occurs in front of ->?
Agda manual on Inductive Data Types and Pattern Matching states:
To ensure normalisation, inductive occurrences must appear in strictly positive positions. For instance, the following datatype is ...
18
votes
2answers
725 views
Why can't (Set -> Set) have type Set?
In Agda, the type of a forall is determined in such a way that the following all have type Set1 (where Set1 is the type of Set and A has type Set):
Set → A
A → Set
Set → Set
However, the following ...
6
votes
1answer
253 views
Types containing with/rewrite clauses in agda, or, how to use rewrite instead of subst?
First some boring imports:
import Relation.Binary.PropositionalEquality as PE
import Relation.Binary.HeterogeneousEquality as HE
import Algebra
import Data.Nat
import Data.Nat.Properties
open PE
open ...
9
votes
2answers
346 views
Agda: parsing nested lists
I am trying to parse nested lists in Agda. I searched on google and the closest I have found is parsing addressed in Haskell, but usually libraries like "parsec" are used that are not available in ...
3
votes
1answer
247 views
Agda: my code doesn't type check (how to get implicit arguments right?)
"checkSimple" gets u, an element of the universe U, and checks if
(nat 1) can be converted to a agda type given u. The result of the conversion is returned.
Now I try to write a console program and ...
2
votes
3answers
316 views
Agda: parse a string with numbers
I am trying to parse a string with natural numbers in Agda.
e.g., stringListToℕ "1,2,3"
The result should be:
Just (1 ∷ 2 ∷ 3 ∷ [])
My current code is not quite right or by any means nice, but ...
67
votes
2answers
2k views
What is the combinatory logic equivalent of intuitionistic type theory?
I recently completed a university course which featured Haskell and Agda (a dependent typed functional programming language), and was wondering if it was possible to replace lambda calculus in these ...
8
votes
0answers
337 views
“Real” programs written in Agda [closed]
Agda is a nice programming language to explore dependent types and play around with intuitionistic type theory and to experiment with the implementation of these things. But are there already ...
2
votes
1answer
144 views
turning a <= b to suc a <= suc b
This is an extension of the question posted here
Agda and Binary Search Trees
I have
trans₁ : ∀ {a b c} → suc a ≤ suc b → suc b ≤ c → suc a ≤ c
for the definition of trans1 but this would require ...
3
votes
1answer
308 views
Agda and Binary Search Trees
Just a note, this is for an assignment, so probably best not to post complete solutions, rather, I'm just stuck and need some hints as to what I should be looking at next.
module BST where
open ...
1
vote
2answers
372 views
Agda, Boolean Proposition
A foreword note that this is for an assignment. A question has already been asked about for the first question. So we have the data type:
data BoolProp : ??? where
ptrue : BoolProp true
pfalse : ...
3
votes
1answer
429 views
Converting Haskell code to Agda
We have to convert this haskell data type into agda code:
data TRUE
data FALSE
data BoolProp :: * -> * where
PTrue :: BoolProp TRUE
PFalse :: BoolProp FALSE
PAnd :: BoolProp a -> BoolProp b ...
5
votes
1answer
188 views
Avoiding extensionality postulate when defining non-unary functions over quotient types
I'm trying to define functions with more than one arguments over quotient types. Using currying, I can reduce the problem to defining functions over the pointwise product setoid:
module Foo where
...
2
votes
2answers
187 views
Installing Agda onto Windows 7
I'm having trouble running Agda on my windows 7 64-bit pc. I tried running the following commands:
cabal install agda
and
cabal install agda-executable
which both work, but I still can't seem ...
5
votes
1answer
269 views
≡-Reasoning and 'with' patterns
I was proving some properties of filter and map, everything went quite good until I stumbled on this property: filter p (map f xs) ≡ map f (filter (p ∘ f) xs). Here's a part of the code that's ...
17
votes
1answer
331 views
Finding out which metas are unsolved in an Agda program
What's the best way to find out what's causing unsolved metas? Is there a way to turn all unsolved metas (and only the unsolved ones) into holes, by expanding all the surrounding wildcards that are ...
4
votes
2answers
208 views
Can Agda compile faster in batch mode?
When I compile an Agda program that uses the standard library, the compiler spends a long time printing out lines such as:
Skipping Relation.Binary.Consequences ...
8
votes
2answers
773 views
Agda as a programming language
I have found a lot of useful information on using Agda as a proof system. I have found virtually no information on using Agda to write usable programs. I cannot even find a "hello world" example that ...
3
votes
3answers
298 views
How to use dependent pairs
Suppose I have a function (it really does what the name says):
filter : ∀ {A n} → (A → Bool) → Vec A n → ∃ (λ m → Vec A m)
Now, I'd like to somehow work with the dependent pair I return. I wrote ...
32
votes
1answer
2k views
Differences between Agda and Idris
I'm starting to dive into dependently-typed programming and have found that the Agda and Idris languages are the closest to Haskell, so I started there.
My question is: which are the main differences ...
11
votes
2answers
991 views
How to learn agda
I am trying to learn agda. However, I got a problem. All the tutorials which I found on agda wiki are too complex for me and cover different aspects of programming. After parallel reading of 3 ...
3
votes
1answer
146 views
Congruence for heterogenous equality
I'm trying to use heterogenous equality to prove statements involving this indexed datatype:
data Counter : ℕ → Set where
cut : (i j : ℕ) → Counter (suc i + j)
I was able to write my proofs using ...
3
votes
1answer
116 views
Eliminating subst to prove equality
I'm trying to representat mod-n counters as a cut of the interval [0, ..., n-1] into two parts:
data Counter : ℕ → Set where
cut : (i j : ℕ) → Counter (suc (i + j))
Using this, defining the two ...
4
votes
1answer
149 views
Termination of structural induction
I can't get Agda's termination checker to accept functions defined using structural induction.
I created the following as the, I think, simplest example exhibiting this problem.
The following ...
6
votes
1answer
426 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 → ...
8
votes
1answer
348 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 ...
24
votes
1answer
1k 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 ...
8
votes
2answers
438 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.
...
12
votes
1answer
1k 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]
...
3
votes
2answers
532 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
...
18
votes
5answers
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 ...