-
Notifications
You must be signed in to change notification settings - Fork 29
/
tests.v
917 lines (812 loc) · 25.3 KB
/
tests.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
(* -*- company-coq-initial-fold-state: bullets; company-coq-local-symbols: (("<~>" . ?↭)); -*- *)
Require Import Utf8.
(* Global folding should work here *)
Ltac __SimpleLtac a b cde := idtac.
Infix "<~>" := iff (at level 0). (* Is this prettified? But not the star at the beginning or end of the comment *)
Check (True <~> False). (* Is this prettified (file-local)? *)
Infix "--->" := implb (at level 0). (* Is this prettified? *)
Check (true ---> false). (* Is this prettified (dir-local)? *)
Goal True = False -> False.
intros.
rewrite <- ?H. (* Is this colored? Ideally it should not be colored at all *)
(* Are contents of goal buffer prettified? Does <menu> work there? *)
apply I.
Qed.
(* This should be underlined. *)
Unset Undo. (* Putting cursor or point on error should show help-echo *)
(* With 8.5, does this jump to the right definition? *)
Fail Compute 1 + plus.
(* This should not be underlined *)
Fail Compute abc_Unset Undo.
Fail Compute discrR. (* Does C-h here crash with OOM? *)
Inductive AAABBB :=
| AAA1
| AAA2 : BBBCCC -> AAABBB
with BBBCCC :=
| BBB1
| BBB2 : AAABBB -> BBBCCC.
(* Does right clicking on Require Import produce a menu?
Does substitution work?
Does canceling with C-g remove the overlays? *)
(* Require Import String Reals Argh Bedrock. *)
Goal (nat + bool).
Proof.
(* Is constructor @{tactic} documented? *)
(* [constructor (apply true)]. *)
Abort.
(* Are symbols correctly prettified? *)
Definition PrettySymbols : (nat -> nat -> Prop) :=
(fun (n m: nat) =>
forall p, p <> n -> p >= m -> True \/ False).
(* Does constructor sort before constructor @{num}? What about intuition? *)
Definition SLD := False.
(* Type SLD RET here. Does this add a newline after introducing SLD? (it should) *)
Definition bullets: True \/ (True \/ True) -> True.
Proof.
- intros. (* Does this fold? *)
destruct H.
+ { (* What about this (inside and outside the brackets)? *)
apply I.
}
+ idtac. (* and this? *)
apply I.
(* Do folded sections automatically unfold when stepping in? *)
(* Show Script. *)
Qed.
(* What do the input hints say for ∈, ⊕, α, and ∅? *)
(* What about [forall], [->], and [True]? *)
Locate "xx__abc". (* Should not have a subscript *)
(* Is [p1.p22.p3.P__abc.P__def] properly subscripted? Does moving the
cursor around it reveal subscript markers (__)? Does adding text in
the middle of the marker work? *)
Infix "⊕" := plus (at level 10).
Inductive LongTypeName := II.
Goal False.
pose proof I.
pose (fix test (arg0 arg1 arg2 arg3 arg4 arg5 arg6 arg7 arg8
arg9 arg10 arg11 arg12 : nat) {struct arg0} : LongTypeName
:= match arg0 with (* [LongTypeName :=] is not a hypothesis *)
| 0 => II
| S n => II
end).
(* Try (company-coq--parse-context-and-goals proof-shell-last-goals-output) here *)
Abort.
(* Try completion here:
And in these brackets: []
And outside: *)
Definition more_bullets: (True \/ (True \/ (True \/ (True \/ True)))) \/ (True \/ True) -> True.
Proof.
intros. (* Does C-u S-tab fold bullets? Does repeating S-tab unfold them? *)
destruct H. (* + *)
- destruct H. (* + *)
+ apply I. (* - *)
+ destruct H. (* + *)
* apply I. (* - *)
* destruct H. (* + *)
apply I. (* - *)
apply I. (* - *)
- destruct H. (* + *)
+ apply I. (* - *)
+ destruct H. (* = *)
apply I. (* - *)
Qed.
Definition more_bullets2: (True \/ (True \/ (True \/ (True \/ True)))) \/ (True \/ True) -> True.
Proof.
intros. (* 1- *)
destruct H. (* 2- *)
- destruct H. (* 3- *)
+ apply I. (* 2- *)
+ destruct H. (* 2- *)
* apply I. (* 2- *)
* destruct H.
apply I.
apply I.
- destruct H.
+ apply I.
+ destruct H.
apply I.
Qed.
Inductive foo := .
Definition foo_recf : foo -> False.
apply foo_rec. (* What happens when jumping to foo_rec? (Should say location unknown) *)
Qed.
Record Record1 := { Field1:nat; Field2: nat }.
Check {| Field1 := 1; Field2 := 2 |}. (* Does jumping to field names work? *)
Class Class1 A := { CField1:A; CField2: nat }.
Check {| CField1 := 1; CField2 := 2 |}. (* Does jumping to field names work? *)
(* Variant Variant1 := VConstructor1 | VConstructor2. *)
(* How are [HintResolve] candidates ordered? *)
(* Does jumping to these work?
plus
bool
true
Require Import NArith.
*)
Require Import String
NArith ZArith. (* Does multiline completion of imports work? *)
(* But not here *)
Definition InactiveBraces := "{{}}"%string. (* These braces shouldn't be active *)
(* Neither should these {{}}
+
- *)
Definition braces:
forall {epsilon: nat}
{gamma: nat (* { *) (* This brace should not be highlighted (no space after it) *)
}
{ mu: id nat (* { *) }, (* Neither should this one (closed on the same line *)
True \/ (True \/ True) -> True.
(* is epsilon prettified in the goals buffer? *)
Proof.
{
intros. (* Does the bullet above unfold properly? *)
destruct H.
compute in mu.
clear epsilon.
pose proof I. { (* Does this fold? Does the ellipsis look nice? *)
apply I.
}
{ apply I. } (* This shouldn't be highlighted *)
}
Qed.
Require Import BinPos.
(* Does completion happen in comments? apply shouldn't suggest [apply …]. But
[apply] should. *)
(** Is this comment highlighted differently? Does it fill? (try pressing M-q (fill-paragraph)) *)
(*! Is this comment bigger? +*)
(*++++++++++++++++++++++++*)
(*+ what about this one? +*)
(*++++++++++++++++++++++++*)
(*** And this one? **)
(******** but not this one? *)
(** * CoqDoc's H1 is nice too *)
(** ** CoqDoc's H2 is nice too *)
(** *** CoqDoc's H3 is nice too *)
(* Does disabling company-coq restore the comments to a small font? *)
(* AAABBB and BBBCCC should autocomplete without starting the prover, and appear in the outline (C-c C-,) *)
(* Start prover *)
Require Import Omega Coq.Arith.Arith. (* This should autocomplete (first result should be correct) *)
SearchAbout plus. (* Scroll down in response window *)
(* plu should autocomplete after running this search. Does the response window keep its offset? *)
(* Pressing <menu> or control-clicking on plus should show a definition inline, prettified. Same for SimpleLtac *)
Lemma clear_search : True. Proof I. (* Does <menu> on I show properly offset inline docs? *)
Fail Fix_F_inv. (* Does the infobox resize properly? *)
(* Does C-w (location) work? Is the point at the beginning of the preceeding comment? *)
Locate le.
Locate gcd.
Locate PrettySymbols.
Goal forall {A} f g (x: A), f = g -> f x -> g x.
Proof.
intros.
Hint Extern 1 => subst. (* HintExter should complete *)
match goal with
| [ H: ?a |- _ ] => eauto (* Is the variable name highlighted? But not in comments: ?a *)
end.
Undo 1.
Definition __1 := 1.
__SimpleLtac 1 2 3. (* Does M-. work here? *)
congruence.
Show Script.
Qed.
Inductive BlahI :=
| constructor0: forall x1 x2 x3 x4: nat, BlahI
| constructor1: forall x1 x2 x3 x4: nat, BlahI
| constructor2: forall x1 x2 x3 x4: nat, BlahI
| constructor3: forall x1 x2 x3 x4: nat, BlahI
| constructor4: forall x1 x2 x3 x4: nat, BlahI
| constructor5: forall x1 x2 x3 x4: nat, BlahI
| constructor6: forall x1 x2 x3 x4: nat, BlahI
| constructor7: forall x1 x2 x3 x4: nat, BlahI.
Lemma AutoAs (n: BlahI) : True.
Proof.
destruct n. (* Does an automatic as clause here work? *)
- destruct x1.
+ admit.
Abort.
Lemma TestSubscripts :
forall x: True, True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> True -> nat -> nat.
Proof.
intros. (* EX2 [EX2] *)
pose proof I as a123. (* subscript, a123 [a123] a123 *)
pose proof I as a123'. (* subscript, a123' [a123'] a123' *)
pose proof I as a''123. (* subscript, a''123 [a''123] a''123 *)
pose proof I as a''123'. (* subscript, a''123' [a''123'] a''123' *)
pose proof I as a__abc. (* __ hidden, a__abc [a__abc] a__abc *)
pose proof I as a__abc''. (* __ hidden, a__abc' [a__abc'] a__abc' *)
pose proof I as a_123. (* _ not hidden, a_123 [a_123] a_123 *)
pose proof I as a__123. (* __ not hidden, a__123 [a__123] a__123 *)
pose proof I as a_'123. (* no subscript, a_'123 [a_'123] a_'123 *)
pose proof I as a_def. (* no subscript, a_def [a_def] a_def *)
(* Are subscripts displaying properly? What about the goals line? *)
constructor.
Qed.
Goal 1 = 1.
(* Are the two numbers displaying properly? *)
reflexivity.
Qed.
Lemma TestLemma : (* This is a template *)
forall number (hypothesis : number + 1 < number),
number + 2 < number + 1.
Proof.
(* intros! Should works here *)
intros number hypothesis.
induction number. (* number should be autocompleted here *)
simpl in *.
omega. (* Documentation should be available here *) (* omega shouldn't be duplicated in the completions list *)
simpl in *.
(* This should be typeable using:
[Require Import C.NA.NA] *)
Require Import Coq.NArith.NArith.
assert (x := plus_0_r). (* This should be underlined *)
assert (let x := plus_0_r in True). (* This should NOT be underlined *)
apply I.
apply lt_n_S.
apply lt_S_n in hypothesis.
intuition. (* Typing C-c C-RET after C-RET should exit *)
(* C-x n d here should single this proof out (C-x n w to exit) *)
Qed.
Definition plus1 (n: nat) :=
match n with (* C-c C-a RET *)
| O => 1
| S x1 => S x1 + 1
end.
Example NameContaining_with_ : True. (* Dummy Example to add a name containing "with" to the context *)
apply I.
Qed.
(* FIXME newline is slow here *)
Fixpoint TestFixpoint (l: list nat) :=
(* It should be possible to type "match ... with" and press enter to go to the next line *)
match l with
| nil => nil
| cons h t => cons h (TestCo t)
end
with TestCo l :=
match l with
| nil => nil
| cons h t => cons h (TestFixpoint t)
end.
(* Try inserting Proof.\nmatch and presing TAB to indent. *)
(* Try typing miw and mgw *)
(* TestFixpoin and TestCo should autocomplete here. C-h should show their
types. C-w should work, too *)
(* C-c C-& should lookup symbols *)
(* C-c C-, should show an occur buffer *)
Section TestSectionName.
Variable A: nat.
Section OtherSection.
Hypothesis H: True.
Lemma t: True -> 1 + 1 = 2.
Proof.
intros ** H0.
(* Try extract-lemma-from-goal C-c C-a C-x here.
Are section variables re-introduced? What about [H0]? *)
+ idtac.
idtac.
Abort.
End OtherSection. (* These names should autocomplete *)
End TestSectionName.
Check TestLemma. (* This name should autocomplete *)
Lemma TestLemma2 : False.
Proof.
cutrewrite -> (False = True). (* This should be inserted with holes. Typing ";RET" should exit the snippet. *)
apply I.
replace False with True.
reflexivity.
Admitted.
(* number and hypothesis shouldn't be available here *)
Let AbortedLemma : False.
apply TestLemma2. (* This should autocomplete. *)
Abort.
Goal True.
idtac "!!!" 1.
idtac "!!!" 2.
idtac "!!!" 3.
idtac "!!!" 4.
auto. (* company-coq-search-in-coq-buffer should show these calls *)
Qed.
(* M-x company-coq-tutorial should work *)
(* FIXME Print Instances should not show a dropdown when inserted. *)
(* Check that ; and . exit the current snippet field, if it's the last one and the point isn't in parens *)
Require Import Utf8.
Lemma MathCompletion : ∀ x, x > 1 → x > 0. (* This can be typed using \forall *)
intros x H.
info_auto with arith.
Qed.
Goal True = True.
(* (company-coq-diff-unification-error) should show diffs for all these errors *)
Fail apply 1.
Fail (apply (@eq_refl Type)).
Set Printing All.
Fail (apply (@eq_refl Type)).
Unset Printing All.
reflexivity.
Qed.
Inductive Tree {T} :=
| Leaf : T -> Tree
| Branch : Tree -> Tree -> Tree.
Fixpoint MakeLargeTree {A} depth (leaf lastleaf:A) :=
match depth with
| O => Leaf lastleaf
| S n => Branch (MakeLargeTree n leaf leaf) (MakeLargeTree n leaf lastleaf)
end.
Inductive TypedTree : @Tree Type -> Type :=
| TypedLeaf : forall A, A -> TypedTree (Leaf A)
| TypedBranch : forall t1 t2, TypedTree t1 -> TypedTree t2 -> TypedTree (Branch t1 t2).
Eval compute in (MakeLargeTree 7 unit nat).
Lemma inhabited_homogeneous:
forall T n (t: T),
inhabited (TypedTree (@MakeLargeTree Type n T T)).
Proof.
intros; constructor.
induction n; simpl; constructor; eauto.
Qed.
Set Printing All.
Definition Depth := 5.
Lemma LargeGoal : inhabited (TypedTree (@MakeLargeTree Type Depth unit nat)).
Proof.
pose proof (inhabited_homogeneous unit Depth tt) as pr.
simpl in *.
Fail exact pr.
(* (company-coq-diff-unification-error) *)
Unset Printing All.
(* Position in the goals buffer shouldn't change when theorem names are autocompleted. *)
Admitted.
(** Error messages **)
Fail Require Import NonExistentModule.
Goal True -> True -> True.
Fail intros a a a. (* C-c C-a C-e *)
Fail intros; intro.
Fail intro before NonExistent. (* Far at the bottom of the page *)
Fail exists 1.
Fail apply False. (* undocumented *)
Inductive Ind : Type -> Type :=
| Const : forall {B}, B -> Ind B.
Fail Check Const (Const nat).
constructor.
Qed.
Require Import Qcanon.
Lemma test : forall vvvvv, exists vvvvv', vvvvv' > vvvvv.
Proof.
intros.
exists (Qcplus vvvvv 1). (* source view should be available here *)
setoid_rewrite Qclt_minus_iff.
rewrite Qcplus_comm.
rewrite Qcplus_assoc.
ring_simplify.
reflexivity.
Qed.
(* vvv shouldn't be available here *)
(* (load "company-coq-goal-diffs.el") *)
Lemma GoalDiffs : forall n1 n2 n3: (id Qc), n1 + n2 + n3 = n3 + n2 + n1.
Proof.
intro.
intro.
intro.
unfold id in n1; generalize dependent n2;
pose proof I.
pose proof 3.
move H0 at top.
destruct n1.
destruct this.
destruct H0.
Abort.
Require Import Omega.
(* Does [zif] yield a list of tactic names? Are they browsable? (C-w) o they have the right 'meta' property? *)
(* Does [Simple] yield a tactic completion? Is it a snippet? Is there a source view feature? *)
(* Is [->] prettified in this comment? In the notation string below?
But not here "->" or here ->? *)
Tactic Notation "myR" constr(from) "->" constr(to) "by" tactic(tac) := idtac.
Tactic Notation "myR" constr(from) "->" constr(to) "in" hyp(hyp) "by" tactic(tac) := idtac.
(* Do these notations autocomplete properly? *)
Ltac ABC := idtac.
Fixpoint ABC n :=
match n with
| 0 => 0
| 1 => 0
| 2 => 0
| _ => 0
end.
(* (setq alert-default-style 'libnotify) *)
Goal True.
Fail timeout 6 repeat pose 1.
Abort.
Require Import Bvector.
Require Import DecBool.
Require Import Bool.
Require Import BoolEq.
Require Import Zerob.
Require Import Setoid.
Require Import Utf8.
Require Import Utf8_core.
Require Import Mergesort.
Require Import Reals.
Require Import Sorting.
Require Import Sorted.
Require Import Heap.
Require Import Permutation.
Require Import PermutSetoid.
Require Import PermutEq.
Require Import ZBinary.
Require Import ZSigZAxioms.
Require Import ZSig.
Require Import ZMulOrder.
Require Import ZLcm.
Require Import ZLt.
Require Import ZAxioms.
Require Import ZSgnAbs.
Require Import ZDivEucl.
Require Import ZBase.
Require Import ZDivFloor.
Require Import ZAddOrder.
Require Import ZParity.
Require Import ZProperties.
Require Import ZAdd.
Require Import ZMaxMin.
Require Import ZMul.
Require Import ZGcd.
Require Import ZPow.
Require Import ZBits.
Require Import ZDivTrunc.
Require Import BigZ.
Require Import ZMake.
Require Import ZNatPairs.
Require Import BigNumPrelude.
Require Import ZModulo.
Require Import DoubleSub.
Require Import DoubleMul.
Require Import DoubleType.
Require Import DoubleBase.
Require Import DoubleDivn1.
Require Import DoubleAdd.
Require Import DoubleDiv.
Require Import DoubleCyclic.
Require Import DoubleSqrt.
Require Import DoubleLift.
Require Import Int31.
Require Import Ring31.
Require Import Cyclic31.
Require Import CyclicAxioms.
Require Import NZCyclic.
Require Import BinNums.
Require Import QMake.
Require Import BigQ.
Require Import QSig.
Require Import NumPrelude.
Require Import NaryFunctions.
Require Import NBinary.
Require Import NMake_gen.
Require Import Nbasic.
Require Import BigN.
Require Import NMake.
Require Import NSigNAxioms.
Require Import NSig.
Require Import NPeano.
Require Import NAddOrder.
Require Import NIso.
Require Import NProperties.
Require Import NAdd.
Require Import NOrder.
Require Import NLcm.
Require Import NSqrt.
Require Import NStrongRec.
Require Import NParity.
Require Import NLog.
Require Import NSub.
Require Import NDefOps.
Require Import NBase.
Require Import NPow.
Require Import NMulOrder.
Require Import NMaxMin.
Require Import NBits.
Require Import NGcd.
Require Import NAxioms.
Require Import NDiv.
Require Import NZDiv.
Require Import NZParity.
Require Import NZPow.
Require Import NZProperties.
Require Import NZOrder.
Require Import NZAdd.
Require Import NZGcd.
Require Import NZDomain.
Require Import NZAxioms.
Require Import NZLog.
Require Import NZAddOrder.
Require Import NZMulOrder.
Require Import NZBase.
Require Import NZMul.
Require Import NZBits.
Require Import NZSqrt.
Require Import Pnat.
Require Import BinPosDef.
Require Import BinPos.
Require Import POrderedType.
Require Import PArith.
Require Import Zwf.
Require Import Zcompare.
Require Import Zpower.
Require Import Zmisc.
Require Import Zsqrt_compat.
Require Import Int.
Require Import Zmax.
Require Import Zgcd_alt.
Require Import ZArith.
Require Import auxiliary.
Require Import Zeuclid.
Require Import ZArith_base.
Require Import Zminmax.
Require Import Wf_Z.
Require Import Zpow_alt.
Require Import BinIntDef.
Require Import Zorder.
Require Import Zpow_facts.
Require Import Zbool.
Require Import BinInt.
Require Import Zcomplements.
Require Import Znat.
Require Import Zquot.
Require Import Zdigits.
Require Import Zabs.
Require Import Zmin.
Require Import Zhints.
Require Import ZArith_dec.
Require Import Zpow_def.
Require Import Zeven.
Require Import Zdiv.
Require Import Znumtheory.
Require Import Zlogarithm.
Require Import Arith_base.
Require Import Compare.
Require Import Euclid.
Require Import Gt.
Require Import Compare_dec.
Require Import Wf_nat.
Require Import Min.
Require Import Even.
Require Import Bool_nat.
Require Import Plus.
Require Import Le.
Require Import EqNat.
Require Import Mult.
Require Import Arith.
Require Import Peano_dec.
Require Import Lt.
Require Import Minus.
Require Import Div2.
Require Import Between.
Require Import Max.
Require Import Utils.
Require Import Syntax.
Require Import Program.
Require Import Combinators.
Require Import Tactics.
Require Import Basics.
Require Import Equality.
Require Import Subset.
Require Import Logic.
Require Import Logic_Type.
Require Import Peano.
Require Import Tactics.
Require Import Datatypes.
Require Import Prelude.
Require Import Specif.
Require Import Inclusion.
Require Import Wellfounded.
Require Import Inverse_Image.
Require Import Lexicographic_Product.
Require Import Union.
Require Import Lexicographic_Exponentiation.
Require Import Transitive_Closure.
Require Import Disjoint_Union.
Require Import Well_Ordering.
Require Import FMaps.
Require Import FSetInterface.
Require Import FSets.
Require Import FMapAVL.
Require Import FSetList.
Require Import FMapList.
Require Import FSetWeakList.
Require Import FMapPositive.
Require Import FMapInterface.
Require Import FSetAVL.
Require Import FSetPositive.
Require Import FSetDecide.
Require Import FSetBridge.
Require Import FSetFacts.
Require Import FSetEqProperties.
Require Import FMapWeakList.
Require Import FMapFacts.
Require Import FSetCompat.
Require Import FSetToFiniteSet.
Require Import FMapFullAVL.
Require Import FSetProperties.
Require Import Qfield.
Require Import Qreduction.
Require Import Qround.
Require Import Qminmax.
Require Import Qpower.
Require Import Qreals.
Require Import QArith_base.
Require Import Qcanon.
Require Import Qabs.
Require Import QArith.
Require Import Qring.
Require Import QOrderedType.
Require Import NArith.
Require Import BinNatDef.
Require Import Ndec.
Require Import Ngcd_def.
Require Import BinNat.
Require Import Nsqrt_def.
Require Import Ndiv_def.
Require Import Nnat.
Require Import Ndigits.
Require Import Ndist.
Require Import SetoidList.
Require Import ListTactics.
Require Import Streams.
Require Import List.
Require Import SetoidPermutation.
Require Import ListSet.
Require Import StreamMemo.
Require Import ClassicalDescription.
Require Import Eqdep_dec.
Require Import Decidable.
Require Import Diaconescu.
Require Import Epsilon.
Require Import SetIsType.
Require Import ProofIrrelevance.
Require Import FunctionalExtensionality.
Require Import Classical_Pred_Type.
Require Import EqdepFacts.
Require Import Eqdep.
Require Import ClassicalEpsilon.
Require Import JMeq.
Require Import Description.
Require Import Hurkens.
Require Import IndefiniteDescription.
Require Import Berardi.
Require Import Classical_Prop.
Require Import ConstructiveEpsilon.
Require Import ProofIrrelevanceFacts.
Require Import ClassicalChoice.
Require Import RelationalChoice.
Require Import ClassicalFacts.
Require Import ClassicalUniqueChoice.
Require Import Classical.
Require Import ChoiceFacts.
Require Import Finite_sets_facts.
Require Import Relations_2.
Require Import Ensembles.
Require Import Finite_sets.
Require Import Multiset.
Require Import Integers.
Require Import Classical_sets.
Require Import Powerset_Classical_facts.
Require Import Image.
Require Import Constructive_sets.
Require Import Permut.
Require Import Relations_1_facts.
Require Import Cpo.
Require Import Powerset_facts.
Require Import Relations_1.
Require Import Infinite_sets.
Require Import Powerset.
Require Import Partial_Order.
Require Import Relations_3_facts.
Require Import Relations_3.
Require Import Uniset.
Require Import Relations_2_facts.
Require Import String.
Require Import Ascii.
Require Import Cauchy_prod.
Require Import Ranalysis_reg.
Require Import Rpow_def.
Require Import RIneq.
Require Import Rgeom.
Require Import RiemannInt_SF.
Require Import Rbase.
Require Import Rseries.
Require Import Rcomplete.
Require Import Ratan.
Require Import Ranalysis.
Require Import Ranalysis2.
Require Import Rtrigo_reg.
Require Import SeqProp.
Require Import Rsigma.
Require Import Cos_rel.
Require Import Rtrigo1.
Require Import Exp_prop.
Require Import Ranalysis3.
Require Import Ranalysis1.
Require Import Rsqrt_def.
Require Import SeqSeries.
Require Import R_Ifp.
Require Import Rminmax.
Require Import Alembert.
Require Import Rfunctions.
Require Import RiemannInt.
Require Import Rlogic.
Require Import ArithProp.
Require Import Rtopology.
Require Import Machin.
Require Import SplitRmult.
Require Import Binomial.
Require Import Cos_plus.
Require Import Rpower.
Require Import Rbasic_fun.
Require Import NewtonInt.
Require Import Rtrigo_fun.
Require Import SplitAbsolu.
Require Import Reals.
Require Import Rtrigo_calc.
Require Import Rtrigo_def.
Require Import Sqrt_reg.
Require Import ROrderedType.
Require Import PartSum.
Require Import AltSeries.
Require Import R_sqr.
Require Import Ranalysis4.
Require Import Rtrigo_alt.
Require Import R_sqrt.
Require Import MVT.
Require Import DiscrR.
Require Import Integration.
Require Import PSeries_reg.
Require Import Rdefinitions.
Require Import Rlimit.
Require Import Rprod.
Require Import Ranalysis5.
Require Import Rderiv.
Require Import Raxioms.
Require Import Rtrigo.
Require Import RList.
Require Import OrdersEx.
Require Import OrdersLists.
Require Import OrdersFacts.
Require Import DecidableTypeEx.
Require Import EqualitiesFacts.
Require Import OrderedTypeAlt.
Require Import OrdersAlt.
Require Import Equalities.
Require Import OrdersTac.
Require Import Orders.
Require Import DecidableType.
Require Import OrderedType.
Require Import OrderedTypeEx.
Require Import GenericMinMax.
Require Import Operators_Properties.
Require Import Relation_Definitions.
Require Import Relation_Operators.
Require Import Relations.
Require Import MSetFacts.
Require Import MSetProperties.
Require Import MSetGenTree.
Require Import MSetDecide.
Require Import MSetList.
Require Import MSetPositive.
Require Import MSetInterface.
Require Import MSetToFiniteSet.
Require Import MSetWeakList.
Require Import MSetAVL.
Require Import MSetEqProperties.
Require Import MSets.
Require Import MSetRBT.
Require Import VectorDef.
Require Import Fin.
Require Import VectorSpec.
Require Import Vector.
Require Import SetoidClass.
Require Import EquivDec.
Require Import SetoidTactics.
Require Import Init.
Require Import Morphisms_Prop.
Require Import SetoidDec.
Require Import Morphisms_Relations.
Require Import Morphisms.
Require Import Equivalence.
Require Import RelationClasses.
Require Import RelationPairs.
(* (setq company-coq-extra-symbols-cmd nil) (setq company-coq-extra-symbols-cmd "SearchAbout -\"_ind\"") *)
(* Loaded 8092 symbols (0.088 seconds) With optimized proof-general search *)
(* Loaded 8092 symbols (0.136 seconds) With plain proof-general search *)
(* Loaded 8092 symbols (0.155 seconds) With optimized proof-general search on battery *)