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
Creating Coq tactic: how to use a newly generated name?
I want to create a Coq tactic that looks something like the following. I assert a proposition named H, I prove that proposition, and then I use simpl within that proposition. The tactic would look som...
Sambo
Votes: 0
Answers: 1
Replace (and print) \qedsymbol within ntheorem proofs
I'm trying to use ntheorem to complete proofs, but having some problems because it has been not possible to replace the \qedsymbol after an enumerate group and at the end of an align* group, the \qed ...
Luis Subirana
Votes: 0
Answers: 1