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)
Warning : “Set this option from the IDE menu instead” in coq
I'm studying the Chapter "Imp" of Software foundation. I runned the command Unset Printing Coercions. in Coq Ide, the coq Message warned me that "Set this option from the IDE menu inste...
Echo_Zero
Votes: 0
Answers: 1
Concatenation of 2 lists in lambda-calculus
I have defined the type of a polymorphic list and its constructors, and now trying to
write a fonction that concatenate 2 lists but my function concat does not work
Definition listA A :Set :=
fora...
t1kumi
Votes: 0
Answers: 1
how to create a polymorphe couple such as "( a : type A, b : type B ) " in lambda-calculus
I am working on a project in Lambda-calculus and i am trying to code polymorphe couple with coqide
but a have a problem coding the constructor that respect the type pprod
Definition pprod : Set -> ...
t1kumi
Votes: 0
Answers: 1
How to activate the Coq messages in vscode/vscoq like in the CoqIde/jscoq?
I am expecting something in my messages bar but I don't see it
Example script:
Fixpoint add_left (n m : nat) : nat :=
match n with
| O => m
| S p => S (add_left p m)
end.
Lemma demo_1...
Charlie Parker
Votes: 0
Answers: 1