python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to prove insert_BST in Coq
I want to prove that when receiving a binary search tree as an argument, the [insert] function generates another binary search tree.
Insert Function:
Fixpoint insert {V : Type} (x : key) (v : V) (t : ...
Breno
Votes: 0
Answers: 2
How to build a proof of correctness in coq for elements_tr
I want to build a proof of correctness for elements_tr...
It is actually related to some sort of reimplementation of BSTs with int keys.
Elements_tr is defined as follows:
Fixpoint elements_aux {V : T...
Breno
Votes: 0
Answers: 0
Coq Program Fixpoint vs equations as far as best way to get reduction lemmas?
I am trying to prove that particular implementations of how to calculate the edit distance between two strings are correct and yield identical results. I went with the most natural way to define edit ...
Sebastian Fisher
Votes: 0
Answers: 2