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]
| Error String
In Agda, the direct translation would be;
data Value : Set where
FunVal : (Value -> Value) -> Value
PriVal : ℕ -> Value
ConVal : String -> List Value -> Value
Error : String -> Value
but I get an error relating to the FunVal because;
Value is not strictly positive, because it occurs to the left of an arrow in the type of the constructor FunVal in the definition of Value.
What does this mean? Can I encode this in Agda? Am I going about it the wrong way?
Thanks.
HOAS doesn't work in Agda, because of this:
Now, notice that evaluating
apply w w
gives youapply w w
back again. The termapply w w
has no normal form, which is a no-no in agda. Using this idea and the type:We can derive a contradiction.
One of the ways out of these paradoxes is only to allow strictly positive recursive types, which is what Agda and Coq choose. That means that if you declare:
That
F
must be a strictly positive functor, which means thatX
may never occur to the left of any arrow. So these types are strictly positive inX
:But these are not:
So in short, no you can't represent your data type in Agda. You can use de Bruijn encoding to get a term type you can work with, but usually the evaluation function needs some sort of "timeout" (generally called "fuel"), e.g. a maximum number of steps to evaluate, because Agda requires all functions to be total. Here is an example due to @gallais that uses a coinductive partiality type to accomplish this.