Are there examples Agda code running in production? [closed]
Are there examples Agda code running in production? [closed]
Are there examples Agda code running in production? [closed]
Agda’s auto proof search is hardwired into the compiler. That makes it fast, but limits the amount of customization you can do. One alternative approach would be to implement a similar proof search procedure using Agda’s reflection mechanism. With the recent beefed up version of reflection using the TC monad, you no longer need to … Read more
It’s really odd that people think pattern matching on types is bad. We get a lot of mileage out of pattern matching on data which encode types, whenever we do a universe construction. If you take the approach that Thorsten Altenkirch and I pioneered (and which my comrades and I began to engineer), the types … Read more
I may not be the best person to answer this, as having implemented Idris I’m probably a bit biased! The FAQ – http://docs.idris-lang.org/en/latest/faq/faq.html – has something to say on it, but to expand on that a bit: Idris has been designed from the ground up to support general purpose programming ahead of theorem proving, and … Read more