Newer
Older
(**************************************************************************)
(* *)
(* This file is part of WP plug-in of Frama-C. *)
(* *)
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
(* CEA (Commissariat a l'energie atomique et aux energies *)
(* alternatives) *)
(* *)
(* you can redistribute it and/or modify it under the terms of the GNU *)
(* Lesser General Public License as published by the Free Software *)
(* Foundation, version 2.1. *)
(* *)
(* It is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *)
(* GNU Lesser General Public License for more details. *)
(* *)
(* See the GNU Lesser General Public License version 2.1 *)
(* for more details (enclosed in the file licenses/LGPLv2.1). *)
(* *)
(**************************************************************************)
let () = Plugin.is_share_visible ()
let () = Plugin.is_session_visible ()
include Plugin.Register
(struct
let name = "WP"
let shortname = "wp"
let help = "Proof by Weakest Precondition Calculus"
end)
(* localize all warnings inside WP *)
let warning ?wkey ?current = match current with
| None -> warning ?wkey ~current:true
| Some b -> warning ?wkey ~current:b
let resetdemon = ref []
let on_reset f = resetdemon := f :: !resetdemon
let reset () = List.iter (fun f -> f ()) !resetdemon
let has_dkey (k:category) = is_debug_key_enabled k
(* ------------------------------------------------------------------------ *)
(* --- WP Generation --- *)
(* ------------------------------------------------------------------------ *)
let wp_generation = add_group "Goal Selection"
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module WP =
Action(struct
let option_name = "-wp"
let help = "Generate proof obligations for all (selected) properties."
end)
let () = on_reset WP.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module Functions =
Kernel_function_set
(struct
let option_name = "-wp-fct"
let arg_name = "f,..."
let help = "Select properties of given functions (defaults to all functions)."
end)
let () = on_reset Functions.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module SkipFunctions =
Kernel_function_set
(struct
let option_name = "-wp-skip-fct"
let arg_name = "f,..."
let help = "Skip the specified functions (defaults to none)."
end)
let () = on_reset SkipFunctions.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module Behaviors =
String_list
(struct
let option_name = "-wp-bhv"
let arg_name = "b,..."
let help = "Select properties of the given behaviors (defaults to all behaviors) of the selected functions."
end)
let () = on_reset Behaviors.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
let () = Parameter_customize.no_category ()
module Properties =
String_list
(struct
let option_name = "-wp-prop"
let arg_name = "p,..."
let help = "Select properties having the one of the given tagnames (defaults to all properties).\n\
You may also replace the tagname by '@category' for the selection of all properties of the given category.\n\
Accepted categories are: lemmas, requires, assigns, ensures, exits, complete_behaviors, disjoint_behaviors, assert, check, invariant, variant, breaks, continues, returns.\n\
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
Starts by a minus character to remove properties from the selection."
end)
let () = on_reset Properties.clear
let () = Parameter_customize.set_group wp_generation
module StatusAll =
False(struct
let option_name = "-wp-status-all"
let help = "Select properties with any status."
end)
let () = Parameter_customize.set_group wp_generation
module StatusTrue =
False(struct
let option_name = "-wp-status-valid"
let help = "Select properties with status 'Valid'."
end)
let () = Parameter_customize.set_group wp_generation
module StatusFalse =
False(struct
let option_name = "-wp-status-invalid"
let help = "Select properties with status 'Invalid'."
end)
let () = Parameter_customize.set_group wp_generation
module StatusMaybe =
True(struct
let option_name = "-wp-status-maybe"
let help = "Select properties with status 'Maybe'."
end)
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
(* ------------------------------------------------------------------------ *)
(* --- Selected Functions --- *)
(* ------------------------------------------------------------------------ *)
module Fct = Cil_datatype.Kf.Set
type functions =
| Fct_none
| Fct_all
| Fct_skip of Fct.t
| Fct_list of Fct.t
let iter_fct phi = function
| Fct_none -> ()
| Fct_all -> Globals.Functions.iter phi
| Fct_skip fs ->
Globals.Functions.iter
(fun kf -> if not (Fct.mem kf fs) then phi kf)
| Fct_list fs -> Fct.iter phi fs
let get_kf () =
if Functions.is_empty() then
if SkipFunctions.is_empty () then Fct_all
else Fct_skip (SkipFunctions.get())
else
Fct_list (Fct.diff (Functions.get()) (SkipFunctions.get()))
let get_wp () =
if WP.get () || not (Functions.is_empty()) ||
not (Behaviors.is_empty()) || not (Properties.is_empty())
then get_kf ()
else Fct_none
let iter_wp f = iter_fct f (get_wp ())
let iter_kf f = iter_fct f (get_kf ())
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
(* ------------------------------------------------------------------------ *)
(* --- Memory Models --- *)
(* ------------------------------------------------------------------------ *)
let wp_model = add_group "Model Selection"
let () = Parameter_customize.set_group wp_model
module Model =
String_list
(struct
let option_name = "-wp-model"
let arg_name = "model+..."
let help = "Memory model selection. Available selectors:\n\
* 'Hoare' logic variables only\n\
* 'Typed' typed pointers only\n\
* '+nocast' no pointer cast\n\
* '+cast' unsafe pointer casts\n\
* '+raw' no logic variable\n\
* '+ref' by-reference-style pointers detection\n\
* '+nat/+int' natural / machine-integers arithmetics\n\
* '+real/+float' real / IEEE floating point arithmetics"
end)
let () = Parameter_customize.set_group wp_model
module ByValue =
String_set
(struct
let option_name = "-wp-unalias-vars"
let arg_name = "var,..."
let help = "Consider variable names non-aliased."
end)
let () = Parameter_customize.set_group wp_model
module ByRef =
String_set
(struct
let option_name = "-wp-ref-vars"
let arg_name = "var,..."
let help = "Consider variable names by reference."
end)
let () = Parameter_customize.set_group wp_model
module InHeap =
String_set
(struct
let option_name = "-wp-alias-vars"
let arg_name = "var,..."
let help = "Consider variable names aliased."
end)
let () = Parameter_customize.set_group wp_model
module AliasInit =
False(struct
let option_name = "-wp-alias-init"
let help = "Use initializers for aliasing propagation."
end)
let () = Parameter_customize.set_group wp_model
module InCtxt =
String_set
(struct
let option_name = "-wp-context-vars"
let arg_name = "var,..."
let help = "Consider variable names in isolated context."
end)
let () = Parameter_customize.set_group wp_model
module ExternArrays =
False(struct
let option_name = "-wp-extern-arrays"
let help = "Put some default size for extern arrays."
end)
let () = Parameter_customize.set_group wp_model
module Overflows =
False(struct
let option_name = "-wp-overflows"
let help = "Collect hypotheses for absence of overflow and downcast\n\
(incompatible with RTE generator plug-in)"
end)
let () = Parameter_customize.set_group wp_model
module WeakIntModel =
False(struct
let option_name = "-wp-weak-int-model"
let help = "Suppress integral type side conditions within lemmas\n\
(possibly unsound)"
end)
let () = Parameter_customize.set_group wp_model
module Literals =
False(struct
let option_name = "-wp-literals"
let help = "Export content of string literals."
end)
let () = Parameter_customize.set_group wp_model
module Volatile =
True(struct
let option_name = "-wp-volatile"
let help = "Sound modeling of volatile access.\n\
Use -wp-no-volatile to ignore volatile attributes."
end)
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
(* -------------------------------------------------------------------------- *)
(* --- Region Model --- *)
(* -------------------------------------------------------------------------- *)
let wp_region = add_group "Region Analysis"
let () = Parameter_customize.set_group wp_region
let () = Parameter_customize.do_not_save ()
module Region =
False
(struct
let option_name = "-wp-region"
let help = "Perform Region Analysis (experimental)"
end)
let () = Parameter_customize.set_group wp_region
let () = Parameter_customize.do_not_save ()
module Region_fixpoint =
True
(struct
let option_name = "-wp-region-fixpoint"
let help = "Compute region aliasing fixpoint"
end)
let () = Parameter_customize.set_group wp_region
let () = Parameter_customize.do_not_save ()
module Region_cluster =
True
(struct
let option_name = "-wp-region-cluster"
let help = "Compute region clustering fixpoint"
end)
let () = Parameter_customize.set_group wp_region
let () = Parameter_customize.do_not_save ()
module Region_inline =
True
(struct
let option_name = "-wp-region-inline"
let help = "Inline aliased sub-clusters"
end)
let () = Parameter_customize.set_group wp_region
let () = Parameter_customize.do_not_save ()
module Region_rw =
True
(struct
let option_name = "-wp-region-rw"
let help = "Written region are considered read-write by default"
end)
let () = Parameter_customize.set_group wp_region
let () = Parameter_customize.do_not_save ()
module Region_pack =
True
(struct
let option_name = "-wp-region-pack"
let help = "Pack clusters by default"
end)
let () = Parameter_customize.set_group wp_region
let () = Parameter_customize.do_not_save ()
module Region_flat =
False
(struct
let option_name = "-wp-region-flat"
let help = "Flatten arrays by default"
end)
let () = Parameter_customize.set_group wp_region
module Region_annot =
False
(struct
let option_name = "-region-annot"
let help = "Register '@region' ACSL Annotations (auto with -wp-region)"
end)
(* ------------------------------------------------------------------------ *)
(* --- WP Strategy --- *)
(* ------------------------------------------------------------------------ *)
let wp_strategy = add_group "Computation Strategies"
let () = Parameter_customize.set_group wp_strategy
module Init =
let option_name = "-wp-init-const"
let help = "Use initializers for global const variables."
end)
let () = Parameter_customize.set_group wp_strategy
module CalleePreCond =
True(struct
let option_name = "-wp-callee-precond"
let help = "Use pre-conditions of callee."
end)
let () = Parameter_customize.set_group wp_strategy
module RTE =
False(struct
let option_name = "-wp-rte"
let help = "Generate RTE guards before WP."
end)
let () = Parameter_customize.set_group wp_strategy
module SmokeTests =
False(struct
let option_name = "-wp-smoke-tests"
let help = "Smoke-tests : look for inconsistent contracts (best effort)"
end)
let () = Parameter_customize.set_group wp_strategy
module SmokeDeadcode =
True(struct
let option_name = "-wp-smoke-dead-code"
let help = "When generating smoke tests, look for unreachable code"
end)
let () = Parameter_customize.set_group wp_strategy
module SmokeDeadcall =
True(struct
let option_name = "-wp-smoke-dead-call"
let help = "When generating smoke tests, look for non-terminating calls"
end)
let () = Parameter_customize.set_group wp_strategy
module SmokeDeadloop =
True(struct
let option_name = "-wp-smoke-dead-loop"
let help = "When generating smoke tests, look for inconsistent loop invairants"
end)
let () = Parameter_customize.set_group wp_strategy
module Split =
False(struct
let option_name = "-wp-split"
let help = "Split conjunctions into sub-goals."
end)
let () = Parameter_customize.set_group wp_strategy
module UnfoldAssigns =
False(struct
let option_name = "-wp-unfold-assigns"
let help = "Unfold aggregates in assigns."
end)
let () = Parameter_customize.set_group wp_strategy
module SplitDepth =
Int(struct
let option_name = "-wp-split-depth"
let default = 0
let arg_name = "p"
let help = "Set depth for splitting conjunctions into sub-goals.\n\
Value -1 means unlimited depth (default 0)"
end)
let () = Parameter_customize.set_group wp_strategy
module SplitMax =
Int(struct
let option_name = "-wp-max-split"
let default = 1000
let arg_name = "n"
let help = "Set maximum number of splitted sub-goals (default 1000)"
end)
let () = Parameter_customize.set_group wp_strategy
module DynCall =
True(struct
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
let option_name = "-wp-dynamic"
let help = "Handle dynamic calls with specific annotations."
end)
let () = Parameter_customize.set_group wp_strategy
module PrecondWeakening =
False(struct
let option_name = "-wp-precond-weakening"
let help = "Discard pre-conditions of side behaviours (sound but incomplete optimisation)."
end)
(* ------------------------------------------------------------------------ *)
(* --- Qed Simplifications --- *)
(* ------------------------------------------------------------------------ *)
let wp_simplifier = add_group "Qed Simplifications"
let () = Parameter_customize.set_group wp_simplifier
module Simpl =
True(struct
let option_name = "-wp-simpl"
let help = "Enable Qed Simplifications."
end)
let () = Parameter_customize.set_group wp_simplifier
module Let =
True(struct
let option_name = "-wp-let"
let help = "Use variable elimination."
end)
let () = Parameter_customize.set_group wp_simplifier
module Core =
True(struct
let option_name = "-wp-core"
let help = "Lift core facts through branches."
end)
let () = Parameter_customize.set_group wp_simplifier
module Prune =
True(struct
let option_name = "-wp-pruning"
let help = "Prune trivial branches."
end)
let () = Parameter_customize.set_group wp_simplifier
module FilterInit =
True(struct
let option_name = "-wp-filter-init"
let help = "Use aggressive filtering of initialization hypotheses."
end)
let () = Parameter_customize.set_group wp_simplifier
module Clean =
True(struct
let option_name = "-wp-clean"
let help = "Use a simple cleaning in case of -wp-no-let."
end)
let () = Parameter_customize.set_group wp_simplifier
module Ground =
True(struct
let option_name = "-wp-ground"
let help = "Use aggressive ground simplifications."
end)
let () = Parameter_customize.set_group wp_simplifier
module Reduce =
True(struct
let option_name = "-wp-reduce"
let help = "Reduce function equalities with precedence to constructors."
end)
let () = Parameter_customize.set_group wp_simplifier
module ExtEqual =
True(struct
let option_name = "-wp-extensional"
let help = "Use extensional equality on compounds (hypotheses only)."
end)
let () = Parameter_customize.set_group wp_simplifier
module Filter =
True(struct
let option_name = "-wp-filter"
let help = "Filter non-used variables and related hypotheses."
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
end)
let () = Parameter_customize.set_group wp_simplifier
module Parasite =
True(struct
let option_name = "-wp-parasite"
let help = "Use singleton-variable filtering."
end)
let () = Parameter_customize.set_group wp_simplifier
module Prenex =
False(struct
let option_name = "-wp-prenex"
let help = "Normalize nested foralls into prenex-form"
end)
let () = Parameter_customize.set_group wp_simplifier
module Bits =
True(struct
let option_name = "-wp-bits"
let help = "Use bit-test simplifications."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyIsCint =
True(struct
let option_name = "-wp-simplify-is-cint"
let help = "Remove redundant machine integer range hypothesis."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyLandMask =
True(struct
let option_name = "-wp-simplify-land-mask"
let help = "Tight logical masks on unsigned integers."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyForall =
False(struct
let option_name = "-wp-simplify-forall"
let help = "Remove machine integer ranges in quantifiers."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyType =
False(struct
let option_name = "-wp-simplify-type"
let help = "Remove all `Type` constraints."
end)
let () = Parameter_customize.set_group wp_simplifier
module InitWithForall =
True(struct
let option_name = "-wp-init-summarize-array"
let help = "Summarize contiguous initializers with quantifiers."
end)
let () = Parameter_customize.set_group wp_simplifier
module BoundForallUnfolding =
Int(struct
let option_name = "-wp-bound-forall-unfolding"
let help = "Instantiate up to <n> forall-integers hypotheses."
let arg_name="n"
let default = 1000
end)
(* ------------------------------------------------------------------------ *)
(* --- Prover Interface --- *)
(* ------------------------------------------------------------------------ *)
let wp_prover = add_group "Prover Interface"
let () = Parameter_customize.set_group wp_prover
module Provers = String_list
(struct
let option_name = "-wp-prover"
let arg_name = "dp,..."
let help =
"Submit proof obligations to external prover(s):\n\
- 'none' to skip provers\n\
- 'script' (session scripts only)\n\
- 'tip' (failed scripts only)\n\
- 'alt-ergo' (default)\n\
- 'altgr-ergo' (gui)\n\
- 'coq', 'coqide' (see also -wp-coq-script)\n\
- 'why3:<dp>' or '<dp>' (why3 prover, see -wp-detect)\n\
let () = Parameter_customize.set_group wp_prover
module RunAllProvers =
False(struct
let option_name = "-wp-run-all-provers"
let help = "Run all specified provers on each goal not proved by Qed. \
Do not stop when a prover succeeds. (default: no)"
end)
let () = Parameter_customize.set_group wp_prover
module Cache = String
(struct
let option_name = "-wp-cache"
let arg_name = "mode"
let help =
"WP cache mode:\n\
- 'none': no cache, run provers (default)\n\
- 'update': use cache or run provers and update cache\n\
- 'cleanup': update mode with garbage collection\n\
- 'replay': update mode with no cache update\n\
- 'rebuild': always run provers and update cache\n\
- 'offline': use cache but never run provers\n\
You can also use the environment variable FRAMAC_WP_CACHE instead."
end)
let () = Parameter_customize.set_group wp_prover
(struct
let option_name = "-wp-cache-env"
let help = "Gives environment variables precedence over command line\n\
for cache management:\n\
- FRAMAC_WP_CACHE overrides -wp-cache\n\
- FRAMAC_WP_CACHEDIR overrides -wp-cache-dir\n\
let () = Parameter_customize.set_group wp_prover
module CacheDir = String
(struct
let option_name = "-wp-cache-dir"
let arg_name = "dir"
let default = ""
let help =
"Specify global cache directory (no cleanup mode).\n\
By default, cache entries are stored in the WP session directory.\n\
You can also use the environment variable FRAMAC_WP_CACHEDIR instead."
let () = Parameter_customize.set_group wp_prover
module CachePrint = False
(struct
let option_name = "-wp-cache-print"
let help = "Show cache directory"
end)
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
let () = Parameter_customize.set_group wp_prover
module Generate = False
(struct
let option_name = "-wp-gen"
let help = "Only generate prover files (default: no)."
end)
let () = on_reset Generate.clear
let () = Parameter_customize.set_group wp_prover
module Detect = Action
(struct
let option_name = "-wp-detect"
let help = "List installed provers."
end)
let () = on_reset Detect.clear
let () = Parameter_customize.set_group wp_prover
module Drivers =
String_list
(struct
let option_name = "-wp-driver"
let arg_name = "file,..."
let help = "Load drivers for linking to external libraries"
end)
let () = Parameter_customize.set_group wp_prover
module Steps =
Int(struct
let option_name = "-wp-steps"
let default = 0
let arg_name = "n"
let help = "Set number of steps for provers."
end)
let () = Parameter_customize.set_group wp_prover
module Timeout =
Int(struct
let option_name = "-wp-timeout"
let default = 10
let arg_name = "n"
let help =
Printf.sprintf
"Set the timeout (in seconds) for provers (default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover
module SmokeTimeout =
Int(struct
let option_name = "-wp-smoke-timeout"
let default = 2
let arg_name = "n"
let help =
Printf.sprintf
"Set the timeout (in seconds) for provers (default: %d)." default
end)
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
let () = Parameter_customize.set_group wp_prover
module TimeExtra =
Int(struct
let option_name = "-wp-time-extra"
let default = 5
let arg_name = "n"
let help =
Printf.sprintf
"Set extra-time (in seconds) for proof replay (default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover
module TimeMargin =
Int(struct
let option_name = "-wp-time-margin"
let default = 2
let arg_name = "n"
let help =
Printf.sprintf
"Set margin-time (in seconds) for considering a proof automatic.\n\
When using the 'tip' prover, scripts are created or cancelled\n\
if the proof time is greater or lower than (timeout - margin).\n\
(default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover
module Procs =
Int(struct
let option_name = "-wp-par"
let arg_name = "p"
let default = 4
let help =
Printf.sprintf
"Number of parallel proof process (default: %d)" default
end)
let () = Parameter_customize.set_group wp_prover
module ProofTrace =
False
(struct
let option_name = "-wp-proof-trace"
let help = "Keeps output of provers for valid POs (default: no)"
end)
(* ------------------------------------------------------------------------ *)
(* --- Prover Options --- *)
(* ------------------------------------------------------------------------ *)
let wp_prover_options = add_group "Prover Options"
let () = Parameter_customize.set_group wp_prover
module Auto = String_list
(struct
let option_name = "-wp-auto"
let arg_name = "s"
let help =
"Activate auto-search with strategy <s>.\n\
Use '-wp-auto <?>' for available strategies."
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
end)
let () = Parameter_customize.set_group wp_prover
module AutoDepth = Int
(struct
let option_name = "-wp-auto-depth"
let arg_name = "n"
let default = 5
let help =
"Depth of auto-search (-wp-auto only, default 5).\n\
Limits the number of nested level in strategies."
end)
let () = Parameter_customize.set_group wp_prover
module AutoWidth = Int
(struct
let option_name = "-wp-auto-width"
let arg_name = "n"
let default = 10
let help =
"Width of auto-search (-wp-auto only, default 10).\n\
Limits the number of pending goals in strategies."
end)
let () = Parameter_customize.set_group wp_prover
module BackTrack = Int
(struct
let option_name = "-wp-auto-backtrack"
let arg_name = "n"
let default = 0
let help =
"Backtracking limit (-wp-auto only, de-activated by default).\n\
Limits backtracking when applying strategies."
end)
let () = Parameter_customize.set_group wp_prover_options
module Script =
String(struct
let option_name = "-wp-coq-script"
let arg_name = "f.script"
let default = ""
let help = "Set user's file for Coq proofs."
end)
let () = Parameter_customize.set_group wp_prover_options
module UpdateScript =
True(struct
let option_name = "-wp-update-coq-script"
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
let help = "If turned off, do not save or modify user's proofs."
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqTimeout =
Int(struct
let option_name = "-wp-coq-timeout"
let default = 30
let arg_name = "n"
let help =
Printf.sprintf
"Set the timeout (in seconds) for Coq (default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqCompiler =
String(struct
let option_name = "-wp-coqc"
let default = "coqc"
let arg_name = "cmd"
let help =
Printf.sprintf
"Set the command line to run Coq Compiler (default 'coqc')."
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqIde =
String(struct
let option_name = "-wp-coqide"
let default = "coqide"
let arg_name = "cmd"
let help =
Printf.sprintf
"Set the command line to run CoqIde (default 'coqide')\n\
If the command-line contains 'emacs' (case insentive),\n\
a coq-project file is used instead of coq options."
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqProject =
String(struct
let option_name = "-wp-coq-project"
let default = "_CoqProject"
let arg_name = "file"
let help =
Printf.sprintf
"Set the Coq-Project file to used with Proof General (default '_CoqProject')"
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqTactic =
String
(struct
let option_name = "-wp-coq-tactic"
let arg_name = "proof"
let default = "auto with zarith"
let help = "Default tactic for Coq"
end)
let () = Parameter_customize.set_group wp_prover_options
module TryHints =
False
(struct
let option_name = "-wp-coq-tryhints"
let help = "Try scripts from other goals (see also -wp-hints)"
end)
let () = Parameter_customize.set_group wp_prover_options
module Hints =
Int
(struct
let option_name = "-wp-coq-hints"
let arg_name = "n"
let default = 3
let help = "Maximum number of proposed Coq scripts (default 3)"
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqLibs =
String_list
(struct
let option_name = "-wp-coq-lib"
let arg_name = "*.v,*.vo"
let help = "Additional libraries for Coq"
end)
let () = Parameter_customize.set_group wp_prover_options
let () = Parameter_customize.no_category ()
String_list
(struct
let option_name = "-wp-why3-opt"
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
let arg_name = "option,..."
let help = "Additional options for Why3"
end)
let () = Parameter_customize.set_group wp_prover_options
module AltErgo =
String(struct
let option_name = "-wp-alt-ergo"
let default = "alt-ergo"
let arg_name = "<cmd>"
let help = "Command to run alt-ergo (default: 'alt-ergo')"
end)
let () = Parameter_customize.set_group wp_prover_options
module AltGrErgo =
String(struct
let option_name = "-wp-altgr-ergo"
let default = "altgr-ergo"
let arg_name = "<cmd>"
let help = "Command to run alt-ergo user interface (default: 'altgr-ergo')"
end)
let () = Parameter_customize.set_group wp_prover_options
module AltErgoLibs =
String_list
(struct
let option_name = "-wp-alt-ergo-lib"
let arg_name = "*.mlw"
let help = "Additional library file for Alt-Ergo"
end)
let () = Parameter_customize.set_group wp_prover_options
let () = Parameter_customize.no_category ()
module AltErgoFlags =
String_list
(struct
let option_name = "-wp-alt-ergo-opt"
let arg_name = "option,..."
let help = "Additional options for Alt-Ergo"
end)
(* ------------------------------------------------------------------------ *)
(* --- PO Management --- *)
(* ------------------------------------------------------------------------ *)
let wp_po = add_group "Proof Obligations"
let () = Parameter_customize.set_group wp_po
module TruncPropIdFileName =
Int(struct
let option_name = "-wp-filename-truncation"
let default = 60
let arg_name = "n"
let help =
"Truncate basename of proof obligation files after <n> characters.\n\
Since numbers can be added as suffixes to make theses names unique,\n\
filename lengths can be highter to <n>. No truncation is performed\n\
when the value equals to zero (default: 60)."
end)
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()
module Print =
Action(struct
let option_name = "-wp-print"
let help = "Pretty-prints proof obligations on standard output."
end)
let () = on_reset Print.clear
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()