forked from hklarner/NuSMV-a
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopt.h
2603 lines (1865 loc) · 45.2 KB
/
opt.h
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
917
918
919
920
921
922
923
924
925
926
927
928
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
/* ---------------------------------------------------------------------------
This file is part of the ``opt'' package of NuSMV version 2.
Copyright (C) 1998-2001 by CMU and FBK-irst.
NuSMV version 2 is free software; 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; either
version 2 of the License, or (at your option) any later version.
NuSMV version 2 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.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
For more information on NuSMV see <http://nusmv.fbk.eu>
or email to <[email protected]>.
Please report bugs to <[email protected]>.
To contact the NuSMV development board, email to <[email protected]>.
-----------------------------------------------------------------------------*/
/*!
\author Marco Roveri
\brief The option header file.
This file conatins a data structure to manage all the
command line options of the NuSMV system.
*/
#ifndef __NUSMV_CORE_OPT_OPT_H__
#define __NUSMV_CORE_OPT_OPT_H__
#if HAVE_CONFIG_H
# include "nusmv-config.h"
#endif
#if NUSMV_HAVE_REGEX_H
# if NUSMV_HAVE_SYS_TYPES_H
/* posix requires that sys/types.h is included before regex */
# include <sys/types.h>
# endif
# include <regex.h>
#endif
#include "nusmv/core/utils/utils.h"
#include "nusmv/core/sat/sat.h" /* for SAT Solver */
#include "nusmv/core/trans/trans.h" /* for TransType */
#include "nusmv/core/enc/enc.h" /* for VarsOrderType and BddSohEnum*/
#include "nusmv/core/fsm/bdd/bdd.h" /* for BddOregJusticeEmptinessBddAlgorithmType */
#include "nusmv/core/be/be.h" /* For RBC2CNF algorithms */
#include "nusmv/core/opt/OptsHandler.h"
#include "nusmv/core/cinit/NuSMVEnv.h"
/*---------------------------------------------------------------------------*/
/* Constant declarations */
/*---------------------------------------------------------------------------*/
/* Opts names */
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_PGM_NAME NUSMV_PACKAGE_NAME
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_PGM_PATH (char *)NULL
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_INPUT_FILE (char *)NULL
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_INPUT_ORDER_FILE (char *)NULL
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_OUTPUT_ORDER_FILE "temp.ord"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_TRANS_ORDER_FILE (char *)NULL
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_PP_CPP_PATH (char *)NULL
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_PP_M4_PATH (char *)NULL
/* outputs warning instead of errors in type checking */
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_BACKWARD_COMPATIBILITY false
/* allows warning messages to be printed during type checking */
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_TYPE_CHECKING_WARNING_ON true
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_CONJ_PART_THRESHOLD 1000
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_IMAGE_CLUSTER_SIZE 1000
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_SHOWN_STATES 25
/* maximum number of states shown during an interactive simulation step*/
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define MAX_SHOWN_STATES 65535
#if NUSMV_HAVE_SOLVER_MINISAT
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_SAT_SOLVER "MiniSat"
#else
#if NUSMV_HAVE_SOLVER_ZCHAFF
#define DEFAULT_SAT_SOLVER "zchaff"
#else
#define DEFAULT_SAT_SOLVER (char*)NULL
#endif
#endif
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define OPT_USER_POV_NULL_STRING "" /* user pov of the null string */
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_OREG_JUSTICE_EMPTINESS_BDD_ALGORITHM \
BDD_OREG_JUSTICE_EMPTINESS_BDD_ALGORITHM_EL_BWD
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_SHOW_DEFINES_IN_TRACES true
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_SHOW_DEFINES_WITH_NEXT true
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_USE_COI_SIZE_SORTING true
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_BDD_ENCODE_WORD_BITS true
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
typedef enum {
FORWARD,
BACKWARD,
FORWARD_BACKWARD,
BDD_BMC
} Check_Strategy;
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_INVAR_CHECK_STRATEGY FORWARD
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
typedef enum {
ZIGZAG_HEURISTIC,
SMALLEST_BDD_HEURISTIC
} FB_Heuristic;
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_FORWARD_BACKWARD_ANALYSIS_HEURISTIC ZIGZAG_HEURISTIC
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
typedef enum {
STEPS_HEURISTIC,
SIZE_HEURISTIC
} Bdd2bmc_Heuristic;
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_BDD2BMC_HEURISTIC STEPS_HEURISTIC
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_DAGGIFIER_ENABLED true
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_DAGGIFIER_COUNTER_THS 3
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_DAGGIFIER_DEPTH_THS 2
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_BDD2BMC_HEURISTIC_THRESHOLD 10
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define APPEND_CLUSTERS_VISIBLE 0
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PROGRAM_NAME "program_name"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PROGRAM_PATH "program_path"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define INPUT_FILE "input_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define SCRIPT_FILE "script_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define INPUT_ORDER_FILE "input_order_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define OUTPUT_ORDER_FILE "output_order_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define TRANS_ORDER_FILE "trans_order_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define OUTPUT_FLATTEN_MODEL_FILE "output_flatten_model_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define OUTPUT_BOOLEAN_MODEL_FILE "output_boolean_model_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define OUTPUT_WORD_FORMAT "output_word_format"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define BACKWARD_COMPATIBILITY "backward_compatibility"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define TYPE_CHECKING_WARNING_ON "type_checking_warning_on"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define VERBOSE_LEVEL "verbose_level"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define RUN_CPP "run_cpp"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PP_LIST "pp_list"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define SHOWN_STATES "shown_states"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IGNORE_SPEC "ignore_spec"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IGNORE_COMPUTE "ignore_compute"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IGNORE_LTLSPEC "ignore_ltlspec"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IGNORE_PSLSPEC "ignore_pslspec"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define OPT_CHECK_FSM "check_fsm"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IGNORE_INVAR "ignore_invar"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define FORWARD_SEARCH "forward_search"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define LTL_TABLEAU_FORWARD_SEARCH "ltl_tableau_forward_search"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PRINT_REACHABLE "print_reachable"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define ENABLE_REORDER "enable_reorder"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define REORDER_METHOD "reorder_method"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DYNAMIC_REORDER "dynamic_reorder"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define ENABLE_SEXP2BDD_CACHING "enable_sexp2bdd_caching"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PARTITION_METHOD "partition_method"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define CONJ_PART_THRESHOLD "conj_part_threshold"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IMAGE_CLUSTER_SIZE "image_cluster_size"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IGNORE_INIT_FILE "ignore_init_file"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define AG_ONLY_SEARCH "ag_only_search"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define CONE_OF_INFLUENCE "cone_of_influence"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define LIST_PROPERTIES "list_properties"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PROP_PRINT_METHOD "prop_print_method"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PROP_NO "prop_no"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define A_SAT_SOLVER "sat_solver"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define IWLS95_PREORDER "iwls95preorder"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define AFFINITY_CLUSTERING "affinity"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define APPEND_CLUSTERS "append_clusters"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define USE_REACHABLE_STATES "use_reachable_states"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define USE_FAIR_STATES "use_fair_states"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define COUNTER_EXAMPLES "counter_examples"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define TRACES_HIDING_PREFIX "traces_hiding_prefix"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_TRACES_HIDING_PREFIX "__"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define BDD_ENCODE_WORD_BITS "bdd_encode_word_bits"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PP_CPP_PATH "pp_cpp_path"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define PP_M4_PATH "pp_m4_path"
#if NUSMV_HAVE_REGEX_H
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define TRACES_REGEXP "traces_regexp"
#endif
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_TRACE_PLUGIN "default_trace_plugin"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define ON_FAILURE_SCRIPT_QUITS "on_failure_script_quits"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define WRITE_ORDER_DUMPS_BITS "write_order_dumps_bits"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define USE_ANSI_C_DIV_OP "use_ansi_c_div_op"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define VARS_ORD_TYPE "vars_order_type"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define BDD_STATIC_ORDER_HEURISTICS "bdd_static_order_heuristics"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define RBC_CNF_ALGORITHM "rbc_rbc2cnf_algorithm"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define SYMB_INLINING "sexp_inlining"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define RBC_INLINING "rbc_inlining"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define RBC_INLINING_LAZY "rbc_inlining_lazy"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define SHOW_DEFINES_IN_TRACES "traces_show_defines"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define SHOW_DEFINES_WITH_NEXT "traces_show_defines_with_next"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define INVAR_CHECK_STRATEGY "check_invar_strategy"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define CHECK_INVAR_FB_HEURISTIC "check_invar_forward_backward_heuristic"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define CHECK_INVAR_BDDBMC_HEURISTIC "check_invar_bddbmc_heuristic"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define CHECK_INVAR_BDDBMC_HEURISTIC_THRESHOLD "check_invar_bddbmc_threshold"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DAGGIFIER_ENABLED "daggifier_enabled"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DAGGIFIER_COUNTER_THRESHOLD "daggifier_counter_threshold"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DAGGIFIER_DEPTH_THRESHOLD "daggifier_depth_threshold"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DAGGIFIER_STATISTICS "daggifier_statistics"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define OREG_JUSTICE_EMPTINESS_BDD_ALGORITHM \
"oreg_justice_emptiness_bdd_algorithm"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define USE_COI_SIZE_SORTING "use_coi_size_sorting"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define BATCH "batch"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define QUIET_MODE "quiet_mode"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DISABLE_SYNTACTIC_CHECKS "disable_syntactic_checks"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define KEEP_SINGLE_VALUE_VARS "keep_single_value_vars"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_SIMULATION_STEPS "default_simulation_steps"
/* For modifying the behavior of ltl2smv to compact the fairness in
one single justice constraint instead of possibly moer than one. */
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define LTL2SMV_SINGLE_JUSTICE "ltl2smv_single_justice"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_LTL2SMV_SINGLE_JUSTICE false
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define BOOLEAN_CONVERSION_USES_PREDICATE_NORMALIZATION "boolean_conversion_uses_predicate_normalization"
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
#define DEFAULT_BOOLEAN_CONVERSION_USES_PREDICATE_NORMALIZATION false
/*!
\env_var{print_accepting} The filename for the -a option
Environment variable for the filename to be used with the -a command line option
*/
#define PRINT_ACCEPTING "print_accepting"
/*!
\env_var{default_print_accepting} Default filename for the -a option
Sets the default filename for the -a command line option to (char *) NULL
*/
#define DEFAULT_PRINT_ACCEPTING (char *)NULL
/*---------------------------------------------------------------------------*/
/* Type declarations */
/*---------------------------------------------------------------------------*/
/*!
\struct options
\brief \todo Missing synopsis
\todo Missing description
*/
typedef struct options_TAG* options_ptr;
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
void set_use_reachable_states(OptsHandler_ptr);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
void unset_use_reachable_states(OptsHandler_ptr);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
boolean opt_use_reachable_states(OptsHandler_ptr);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
void set_use_fair_states(OptsHandler_ptr);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
void unset_use_fair_states(OptsHandler_ptr);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
boolean opt_use_fair_states(OptsHandler_ptr);
/*---------------------------------------------------------------------------*/
/* Function prototypes */
/*---------------------------------------------------------------------------*/
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
void set_pgm_name(OptsHandler_ptr, char *);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
void reset_pgm_name(OptsHandler_ptr);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/
char * get_pgm_name(OptsHandler_ptr);
/*!
\brief \todo Missing synopsis
\todo Missing description
*/