Source file bes.ml
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
(** Optimizer for logical expressions *)
let is_verbose_mode = ref false
let should_verify_results = ref false
let (|>) a b = b a
(** A boolean type with 3 values : true, false and don't care
Some true means true, Some false means false and None means
don't care *)
type ext_bool = [ `True | `False | `Dontcare ]
(** A minterm with true, false and dont't care values *)
type dnf_minterm = ext_bool list
(** A sum of minterms *)
type dnf_expression = dnf_minterm list
module Dnfexpressionmap = Map.Make(struct
type t = dnf_expression
let compare = compare
end)
(** The algorithm for the optimization *)
type optimization_algorithm =
| Qmc
(** Quine-McCluskey only *)
| Qmc_CyclicCore
(** Quine-McCluskey, then cyclic core *)
| Qmc_SimpleHeuristic_SortOnce
(** Quine-McCluskey, then cyclic core, then heuristic cover search.
The impicants are sorted by the number of covered minterms once
before the optimization. The length of the implications is used
as the heuristic value. *)
| Qmc_SimpleHeuristic_SortEachTime
(** Quine-McCluskey, then cyclic core, then heuristic cover search.
The impicants are sorted by the number of covered minterms after
each step. The length of the implications is used as the
heuristic value. *)
| Qmc_SimpleHeuristic_AdvancedHeuristic
(** Quine-McCluskey, then cyclic core, then heuristic cover search.
The impicants are sorted by the number of covered minterms
after each step. Advanced heuristic formula (see thesis) is used
to calculate the heuristic value *)
| Qmc_SimpleHeuristic_Best
(** Quine-McCluskey, then cyclic core, then heuristic cover search.
The impicants are sorted by the number of covered minterms after
each step. Advanced heurisitc or the length of the
implications is used as heuristic value, depending on the
better results. *)
| Qmc_PetricksMethod
(** Quine-McCluskey and then Petrick's method *)
| In_Place_Heuristic
(** This exaption is raised whenever some operation is not possible.
E.g. merging two minterms with different number of literals
(including the don't care ones) is such oprtation*)
exception Not_possible
(** Converts the given string to a minterm. 1 is true,
0 is false and (small) x is don't matter. *)
let dnf_minterm_of_string (str : string) =
let result = ref [] in
String.iter
(function
| 'x' -> result := `Dontcare :: !result
| '0' -> result := `False :: !result
| '1' -> result := `True :: !result
| _ -> raise (Invalid_argument "minterm_of_string"))
str;
!result
(** Converts the given string, separated by the given separator to
a dnf expression. 1 is true, 0 is false and (small) x
is don't matter.*)
let rec dnf_expression_of_string (separator : char) (str : string) =
if String.rindex str separator <> (String.length str) - 1 then
dnf_expression_of_string separator (String.concat "" [str; (Char.escaped separator)])
else
let parse_next_minterm (str : string) =
let pos = String.index str separator in
let minterm_string = String.sub str 0 pos in
let minterm = dnf_minterm_of_string minterm_string in
let rest = String.sub str (pos + 1) ((String.length str) - (String.length minterm_string) - 1) in
(List.rev minterm, rest)
in
let rec parse_string str =
if String.length str = 0 then
[]
else
let (parsed_minterm, rest) = parse_next_minterm str in
parsed_minterm :: (parse_string rest)
in
parse_string str
(** Converts the given string list to a dnf expression.
1 is true, 0 is false and (small) x is don't matter.*)
let dnf_expression_of_string_list (lst : string list) =
dnf_expression_of_string ';' (String.concat ";" lst)
(** Converts a minterm of a dnf expression to a string *)
let string_of_dnf_minterm (m : dnf_minterm) =
let res_as_list = ref [] in
List.iter
(function
| `Dontcare -> res_as_list := "x" :: !res_as_list
| `True -> res_as_list := "1" :: !res_as_list
| `False -> res_as_list := "0" :: !res_as_list
) m;
String.concat "" (List.rev !res_as_list)
let pp_dnf_minterm (f : Format.formatter) (m : dnf_minterm) =
List.iter
(fun x -> Format.pp_print_char f (match x with
| `Dontcare -> 'x'
| `True -> '1'
| `False -> '0')
) m
(** Converts a dnf expression to a string *)
let string_of_dnf_expression (expr : dnf_expression) =
let res_as_list = ref [] in
List.iter (fun x -> res_as_list := (string_of_dnf_minterm x) :: !res_as_list) expr;
String.concat "\n\r" (List.rev !res_as_list)
let pp_dnf_expression (f : Format.formatter) (expr : dnf_expression) =
match expr with
| [] -> ()
| head :: tail ->
pp_dnf_minterm f head;
List.iter
(fun x ->
Format.pp_print_newline f (); pp_dnf_minterm f x;
) tail
(** Loads a dnf expression from file with the given name. The file should
contain one minterm per line. The format of the minterm
representations is as following: 1 means true, 0 means false and
x means don't matter. Lines starting with any other characters
then 0, 1 or x are ignored. *)
let load_from_file file_name =
let res = ref [] in
let in_channel = open_in file_name in
let rec read_lines () =
try
let resl = ref [] in
let line = input_line in_channel in
let first_char = String.get line 0 in
if (first_char = '0' || first_char = '1' || first_char = 'x') then
begin
String.iter
(function
| '0' -> resl := `False :: !resl
| '1' -> resl := `True :: !resl
| 'x' -> resl := `Dontcare :: !resl
| _ -> () )
line;
res := !resl :: !res
end
else
()
;
read_lines ()
with End_of_file -> ()
in
read_lines ();
List.map (fun x -> List.rev x) !res
(** Flattens a list of lists *)
let fast_flatten (l : 'a list list) =
List.fold_left (fun a x -> List.rev_append x a) [] l
(** Maps a list *)
let fast_map f l =
Array.to_list (Array.map f (Array.of_list l))
(** Remove duplicates from a list. It is equavalien to creating a
set of list and converting it back to the list *)
let remove_duplicates lst =
if lst <> [] then
let rec doit s lst = function
| [] -> []
| xs::xr when lst <> xs || s -> xs::(doit false xs xr)
| xs::xr -> doit false xs xr
in
lst
|> List.fast_sort compare
|> doit true (List.hd lst)
else
[]
(** Returns whether l1 is subset of l2 *)
let is_subset l1 l2 =
let rec doit = function
| xs::xr -> if List.mem xs l2 then doit xr else false
| [] -> true
in
doit l1
(** Returns a list of sublists of the length <= n.
Note: The result may contain some results twice, but
it is ok for our purpuses. *)
let sublists_of_n n l =
if n < 1 then raise (Invalid_argument "n should be >= 1");
let rec doit n l =
if n = 0 then
l
else
fast_flatten
(List.map (fun x -> List.map (fun y -> remove_duplicates(x@y)) l) (doit (n - 1) l))
in
List.map (fun x -> [x]) l
|> doit (n - 1)
(** Removes the items which are in the list l1 from the other list*)
let remove_sublist_from_list l1 =
List.filter (fun x -> not (List.mem x l1))
type debug_level = Info | Waring | Error
(** Prints a debug message to the standard output *)
let debug_print (lvl : debug_level) (str : string) : unit =
if !is_verbose_mode then
match lvl with
| Info -> Options.debug "BES: %s" str
| Waring -> Options.warning "BES: %s" str
| Error -> ignore(Error); Options.error "BES: %s" str
else
()
(** Sets whether the debug info should be
printed to the standard output *)
let set_verbose_mode m =
is_verbose_mode := m
(** Prints a minterm of a dnf expression to the standard
output *)
let print_dnf_minterm m =
print_endline (string_of_dnf_minterm m)
(** Prints a dnf expression to the standard output *)
let print_dnf_expression expr =
print_endline (string_of_dnf_expression expr)
(** Counts the 'True's in the given dnf_minterm.
Used for sorting the minterms of the expression *)
let count_non_negated_variables =
List.fold_left (fun a x -> if x = `True then a + 1 else a) 0
(** Returns the number of trues + falses in a minterm *)
let minterm_size (m : dnf_minterm) =
m
|> List.filter ((<>) `Dontcare)
|> List.length
(** Sorts and groups the minterms of the expression by the number
of non negated variables and adds and indicator what terms have
been merged to produce the resulting term Needed. because two
minterms can only be merged if the number of non negated variables
differs by one *)
let group_expression (expr : dnf_expression) =
expr
|> List.fast_sort
(fun a b ->
(count_non_negated_variables a)
- (count_non_negated_variables b))
|> List.fold_left
(fun (a, cnt) x ->
let act_cnt = count_non_negated_variables x in
if act_cnt > cnt then
([(x, ref false)]::a, act_cnt)
else
(((x, ref false)::(List.hd a))::(List.tl a), cnt))
([], -1)
|> fst
(** Merges two minterms if it is possible and returns Some result
or returns None if the it is not possible to merge. *)
let try_merge_two_minterms (m1 : dnf_minterm) (m2 : dnf_minterm) : dnf_minterm option =
let rec doit = function
| x::xs, y::ys, cnt when x = y && cnt <= 1 ->
x::(doit (xs, ys, cnt))
| x::xs, y::ys, cnt when (x <> y) && cnt <= 1 ->
`Dontcare::(doit(xs, ys, (cnt + 1)))
| [], [], cnt when cnt <= 1 ->
[]
| _ ->
raise Not_possible
in
try
Some (doit (m1, m2, 0))
with Not_possible ->
None
(** Expands the don't care literals. I.e [[x..]; ..] will
be turned into [[1..]; [0..]; ..] *)
let rec expand_minterm = function
| [] -> [[]]
| h::t when h <> `Dontcare ->
List.fold_left (fun xs t -> (h::t)::xs) [] (expand_minterm t)
| h::t when h = `Dontcare ->
List.fold_left
(fun xs t -> (`True::t)::(`False::t)::xs)
[]
(expand_minterm t)
| _ -> raise Not_possible
(** Returns true if expr_from implies expr_to *)
let is_implication (expr_from : dnf_minterm) (expr_to : dnf_minterm) =
let expanded_from = expand_minterm expr_from in
let expanded_to = expand_minterm expr_to in
is_subset expanded_to expanded_from
(** Finds the prime implicants of a dnf-expression. An implicant
is a sum of some minterms. A prime implicant is an implicant
that cannot be convered by other implicants, except by itself *)
let cache = ref Dnfexpressionmap.empty
let find_prime_implicants (expr : dnf_expression) =
try
Dnfexpressionmap.find expr !cache
with Not_found -> begin
let grouped_expr = group_expression expr in
let remove_merged grouped_expr =
let z =
fast_map
(fun x -> List.filter (fun (_, b) -> not !b) x)
grouped_expr
in
List.filter (function | [] -> false | _ -> true) z
in
let rec do_merging = function
| xs1::xs2::xr ->
let merges = fast_map
(fun (x, bx) ->
(x, bx)::fast_map
(fun (y, by) ->
match try_merge_two_minterms x y with
| Some z -> bx := true; by := true; (z, ref false)
| None -> (y, by)
)
xs1
)
xs2 in
(remove_duplicates (fast_flatten merges))::do_merging(xs2::xr)
| x -> x
in
let rec consecutive_merge = function
| [] -> []
| xs::[] -> xs::[]
| x -> x |> do_merging |> remove_merged |> consecutive_merge
in
debug_print Info "Searching prime implicants started...";
let (res, _) =
grouped_expr
|> consecutive_merge
|> fast_flatten
|> List.split
in
debug_print Info "Searching prime implicants finished...";
debug_print Info ((string_of_int (List.length res)) ^ " prime implicants found");
cache := Dnfexpressionmap.add expr res !cache;
res
end
(** Finds the implications of the prime implicants *)
let find_implications (expr : dnf_expression) (implicants : dnf_expression) =
debug_print Info "Search for Implications started...";
let implications =
fast_map (fun x -> x, (List.filter (fun y -> is_implication x y) expr))
implicants
in
let back_implications =
fast_map (fun x -> x, (List.filter (fun y -> is_implication y x) implicants))
expr
in
debug_print Info "Search for Implications finished...";
(implications, back_implications)
(** Finds the essential implications of the implications. They must
occur in the minimized expression.*)
let find_essential_implications (implications, back_implications) =
let (exprs, _) =
back_implications
|> List.filter (fun (_, lx) -> (List.length lx) = 1)
|> List.split
in
let imps =
List.filter
(fun (_, lx) -> List.exists (fun y -> List.mem y lx) exprs)
implications
in
let (essential_implicants, covered_minterms) = List.split imps in
let covered_minterms = remove_duplicates (fast_flatten covered_minterms) in
let not_covered_minterms =
List.fold_left
(fun a (x, _) ->
if (List.mem x covered_minterms) then
a
else
x::a)
[]
back_implications
in
(essential_implicants, covered_minterms, not_covered_minterms)
(** Splits the given implications and back_implications into the essential
and non essential ones *)
let split_essential_not_essential implications back_implications =
let (essential_implicants, covered_minterms, not_covered_minterms) =
find_essential_implications (implications, back_implications) in
let (es_imp, non_es_imp) =
List.partition (fun (x, _) -> List.mem x essential_implicants) implications in
let (es_b_imp, non_es_b_imp) =
List.partition (fun (x, _) -> List.mem x covered_minterms) back_implications in
let non_es_imp =
List.map (fun (w, x) -> w, (List.filter (fun y -> List.mem y not_covered_minterms) x)) non_es_imp in
let non_es_b_imp =
List.map (fun (w, x) -> w, (List.filter (fun y -> not (List.mem y essential_implicants)) x)) non_es_b_imp in
(es_imp, non_es_imp, es_b_imp, non_es_b_imp)
(** Calculates the cyclic core of the given implications,
back_implication pair *)
let cyclic_core implications back_implications =
let is_row_dominance imp1 imp2 =
match imp1, imp2 with
| (_, x), (_, y) when x <> y && is_subset y x -> true
| _ -> false
in
let is_column_dominance bimp1 bimp2 =
match bimp1, bimp2 with
| (_, x), (_, y) when x <> y && is_subset x y -> true
| _ -> false
in
let rec do_dominance implications back_implications =
debug_print Info "Checking dominance...";
let implications_new = implications in
let back_implications_new = back_implications in
let implications_new =
implications_new
|> List.filter
(fun x -> not (List.exists (fun y -> is_row_dominance y x) implications))
|> List.filter (fun (_, x) -> x <> [])
in
let implicants = List.map (fun (x, _) -> x) implications_new in
let back_implications_new =
List.map
(fun (x, xl) -> x, (List.filter (fun y -> List.mem y implicants) xl))
back_implications_new
in
let back_implications_new =
back_implications_new
|> List.filter
(fun x -> not (List.exists (fun y -> is_column_dominance y x) back_implications))
|> List.filter (fun (_, x) -> x <> [])
in
let minterms = List.map (fun (x, _) -> x) back_implications_new in
let implications_new =
List.map
(fun (x, xl) -> x, (List.filter (fun y -> List.mem y minterms) xl))
implications_new
in
if (List.length back_implications_new) < (List.length back_implications)
|| (List.length implications_new) < (List.length implications) then
do_dominance implications_new back_implications_new
else
(implications_new, back_implications_new)
in
let rec do_cyclic_core essential_implications non_essential_implications
essential_back_implications non_essential_back_implications =
debug_print Info "Checking essentiality...";
let (non_essential_implication_count,
non_essential_back_implication_count) =
((List.length non_essential_implications), (List.length non_essential_back_implications)) in
let (non_essential_implications_new, non_essential_back_implications_new) =
do_dominance non_essential_implications non_essential_back_implications in
let (essential_implications_new,
non_essential_implications_new,
essential_back_implications_new,
non_essential_back_implications_new) =
split_essential_not_essential non_essential_implications_new non_essential_back_implications_new in
let (non_essential_implication_count_new,
non_essential_back_implication_count_new) =
((List.length non_essential_implications_new), (List.length non_essential_back_implications_new)) in
debug_print Info ((string_of_int (List.length essential_implications_new)) ^ " new essential implicants found");
if (non_essential_implication_count_new < non_essential_implication_count)
|| (non_essential_back_implication_count_new < non_essential_back_implication_count) then
do_cyclic_core
(fast_flatten [essential_implications; essential_implications_new])
non_essential_implications_new
(fast_flatten [essential_back_implications; essential_back_implications_new])
non_essential_back_implications_new
else
((fast_flatten [essential_implications_new; essential_implications; non_essential_implications_new]),
(fast_flatten [essential_back_implications_new; essential_back_implications; non_essential_back_implications_new]))
in
let (es_imp, non_es_imp, es_b_imp, non_es_b_imp) =
split_essential_not_essential implications back_implications in
let _ = debug_print Info ("Originally: " ^ (string_of_int (List.length non_es_imp)) ^ " non essential implicants") in
let (implications, back_implications) =
do_cyclic_core es_imp non_es_imp es_b_imp non_es_b_imp in
let (e, _, _) = find_essential_implications (implications, back_implications) in
let _ = debug_print Info ("Ater cyclic core: " ^ (string_of_int ((List.length implications) - (List.length e))) ^ " non essential implicants") in
(implications, back_implications)
(** Makes a simple heuristic optmization using the following algorithm:
1) res = []
2) sort non essential implicants descending by the number
of not covered minterms
3) for each non essential implicant t, if t covers some minterms
not covered yet then res = t :: res
3.1) if sort_each_time then the rest of non essential implicants are
sorted again
5) return res *)
let simple_heuristic implications
essential_implicants
covered_minterms
not_covered_minterms
use_advanced_heuristic
sort_each_time =
let non_essential_implications =
implications
|> List.map
(fun (x, t) -> (x, remove_sublist_from_list covered_minterms t))
|> List.fast_sort
(fun (_, t1) (_, t2) -> (List.length t1) - (List.length t2))
|> List.fold_left
(fun a (x, t) -> if List.mem x essential_implicants then a else (x, t)::a)
[]
in
let all_minterms_multiset =
non_essential_implications
|> List.fold_left (fun a (_, x) -> x::a) []
|> fast_flatten
in
let new_covered_minterms = ref [] in
List.iter
(fun x -> new_covered_minterms := x :: (!new_covered_minterms))
covered_minterms;
let choose l =
let minterms =
l
|> snd
|> remove_sublist_from_list !new_covered_minterms
in
if use_advanced_heuristic then
minterms
|> List.map
(fun x ->
let cov =
(List.filter (fun y -> x = y) all_minterms_multiset)
|> List.length
|> float_of_int
in
1. /. (cov -. 1.) )
|> List.fold_left (+.) 0.
|> ( *. ) 128.
|> int_of_float
else
List.length minterms
in
debug_print Info ("Heuristic optimization with "
^ (string_of_int (List.length non_essential_implications))
^ " non essential implicants");
let covered_count () = List.length !new_covered_minterms in
let rec mark_covered = function
| xs::xr ->
if not (List.exists (fun x -> x = xs) !new_covered_minterms) then
new_covered_minterms := xs :: (!new_covered_minterms)
else ()
;
mark_covered xr
| [] -> ()
in
let is_all_covered () =
(List.length !new_covered_minterms) =
(List.length covered_minterms) + (List.length not_covered_minterms)
in
let rec do_optimization l =
let ls =
if sort_each_time then
ListLabels.sort ~cmp:(fun x y -> choose y - choose x) l
else
l
in
match ls with
| (xs, ts)::xr when not (is_all_covered ()) ->
let c_before = covered_count () in
mark_covered ts;
let c_after = covered_count () in
if c_after > c_before then
xs::(do_optimization xr)
else
do_optimization xr
| _ -> []
in
fast_flatten [(do_optimization non_essential_implications); essential_implicants]
(** Uses the petrick's method for exact minimization *)
let petricks_method implications
back_implications
essential_implicants
covered_minterms
not_covered_minterms =
let expression =
back_implications
|> fast_map
(
fun (x, y) ->
if (List.mem x covered_minterms) then
[]
else
y
|> fast_map
(fun z ->
if (List.mem z essential_implicants) then
[]
else
[z]
)
|> List.filter (fun x -> x <> [])
)
|> List.filter (fun x -> x <> [])
in
let number_of_implications = List.length expression in
debug_print Info
("Petrick's optimization with " ^ (string_of_int number_of_implications) ^ " implications");
if number_of_implications > 10 then
debug_print Waring "Too many implications. The optimization may take some time..."
else
();
let remove_subsets lst =
let rec doit = function
| xs::xr ->
if List.exists (fun x -> (is_subset x xs) && x<>xs) lst then
doit xr
else
xs::(doit xr)
| [] -> []
in
doit lst
in
let rec multiply = function
| xs1::xs2::xr ->
((fast_flatten (fast_map (fun x -> fast_map (fun y -> remove_duplicates (x@y)) xs2) xs1)) :: xr)
|> remove_subsets
|> multiply
| x -> x
in
let _ = debug_print Info "Multiplying..." in
let multiplication_results =
expression
|> multiply
|> fast_flatten
|> remove_duplicates
|> remove_subsets
in
let rec find_minimal_result len_of_subset =
if number_of_implications = 0 then
[]
else
let res =
multiplication_results
|> sublists_of_n len_of_subset
|> List.map (fun x -> ((fast_flatten x), x))
|> List.map
(fun (x, y) -> (fast_flatten (List.map (fun z -> List.assoc z implications) x), y))
|> List.filter
(fun (x, _) -> (fun _ -> List.for_all (fun z -> List.mem z x) not_covered_minterms) x)
|> List.map (fun (_, x) -> x)
|> List.fast_sort
(fun x y -> minterm_size (fast_flatten (fast_flatten x)) - minterm_size (fast_flatten (fast_flatten y)))
|> List.stable_sort
(fun x y -> List.length (fast_flatten x) - List.length (fast_flatten y))
in
if res = [] then
find_minimal_result (len_of_subset + 1)
else
res
in
let _ = debug_print Info "Choosing Results..." in
match find_minimal_result 1 with
| [] -> essential_implicants
| xs::_ -> fast_flatten (xs @ [essential_implicants])
(** EXPREREMNTAL, NOT TESTED: A heuristic optimization method that
uses the Expand step instead of the QMC algorithm *)
let rec mini (expr : dnf_expression) =
let rec merge_possible_miterms (ps : dnf_minterm) (pr : dnf_minterm list) =
match pr with
| _::xr ->
if List.exists (fun y -> List.hd y = `Dontcare) pr then
`Dontcare :: (merge_possible_miterms (List.tl ps) xr)
else
(List.hd ps) :: (merge_possible_miterms (List.tl ps) xr)
| [] -> ps
in
let remove_covered m =
List.filter (fun x -> not (is_implication m x))
in
let rec do_merging = function
| xs::xr ->
let possible_minterms =
List.fold_left (fun a x -> match try_merge_two_minterms xs x with None -> a | Some y -> y :: a) [xs] xr in
let new_minterm = (merge_possible_miterms (List.hd possible_minterms) (List.tl possible_minterms)) in
let not_covered = remove_covered new_minterm xr in
new_minterm :: (do_merging not_covered)
| _ -> []
in
let new_expr = do_merging expr in
if new_expr = expr then new_expr else mini new_expr
(** Tests whether two expressions are equivalent *)
let test_minimization_equivalence (expr1: dnf_expression) (expr2 : dnf_expression) =
let rec expand_minterm = function
| [] -> [[]]
| h::t when h <> `Dontcare -> List.fold_left (fun xs t -> (h::t)::xs) [] (expand_minterm t)
| h::t when h = `Dontcare -> List.fold_left (fun xs t -> (`True::t)::(`False::t)::xs) [] (expand_minterm t)
| _ -> raise Not_possible
in
let expand_expression (expr : dnf_expression) =
expr
|> List.map expand_minterm
|> fast_flatten
|> remove_duplicates
in
let e1 =
expr1
|> expand_expression
|> remove_duplicates
|> (List.sort compare)
in
let e2 =
expr2
|> expand_expression
|> remove_duplicates
|> (List.sort compare)
in
assert (e1 = e2)
(** Sets whether the optimization results should be verfied *)
let set_result_verification m =
should_verify_results := m
(** Optimizes the given expression with the suitable algoirthm.
When there is more then 12 non essential prime implicants
Qmc_SimpleHeuristic_Best is used, otherwise Qmc_PetricksMethod.
The result is a tuple of the minimized expression and a boolean
which indicates whether the optimization was exact (true) or not*)
let auto_optimize expr =
let implicants = find_prime_implicants expr in
let (implications, back_implications) =
find_implications expr implicants
in
let (implications, back_implications) =
cyclic_core implications back_implications in
let (essential_implicants, covered_minterms, not_covered_minterms) =
find_essential_implications (implications, back_implications)
in
let (_, non_es_imps, _, _) =
split_essential_not_essential implications back_implications
in
let exact = List.length non_es_imps <= 12 in
if exact then
let optimized =
petricks_method implications back_implications essential_implicants covered_minterms not_covered_minterms
in
if !should_verify_results then test_minimization_equivalence expr optimized;
(optimized, true)
else
let optimized =
let m1 = simple_heuristic implications essential_implicants covered_minterms not_covered_minterms true true in
let m2 = simple_heuristic implications essential_implicants covered_minterms not_covered_minterms false true in
if (List.length m1) < (List.length m2) then m1 else m2
in
if !should_verify_results then test_minimization_equivalence expr optimized;
(optimized, false)
(** Optimizes the given expression with the specified algorithm *)
let optimize (algorithm : optimization_algorithm) (expr : dnf_expression) =
match algorithm with
| Qmc ->
let optimized = find_prime_implicants expr in
if !should_verify_results then test_minimization_equivalence expr optimized;
optimized
| Qmc_CyclicCore ->
let implicants = find_prime_implicants expr in
let (implications, back_implications) =
find_implications expr implicants
in
let (implications, _) =
cyclic_core implications back_implications
in
let optimized = List.map (fun (x, _) -> x) implications in
if !should_verify_results then test_minimization_equivalence expr optimized;
optimized
| In_Place_Heuristic ->
let implicants = mini expr in
let (implications, back_implications) =
find_implications expr implicants
in
let (implications, back_implications) =
cyclic_core implications back_implications in
let (essential_implicants, covered_minterms, not_covered_minterms) =
find_essential_implications (implications, back_implications)
in
let optimized =
simple_heuristic implications essential_implicants covered_minterms not_covered_minterms true true in
if !should_verify_results then test_minimization_equivalence expr optimized;
optimized
| Qmc_SimpleHeuristic_SortOnce
| Qmc_SimpleHeuristic_SortEachTime
| Qmc_SimpleHeuristic_AdvancedHeuristic
| Qmc_SimpleHeuristic_Best
| Qmc_PetricksMethod ->
let implicants = find_prime_implicants expr in
let (implications, back_implications) =
find_implications expr implicants
in
let (implications, back_implications) =
cyclic_core implications back_implications in
let (essential_implicants, covered_minterms, not_covered_minterms) =
find_essential_implications (implications, back_implications)
in
let optimized =
if algorithm = Qmc_SimpleHeuristic_SortOnce then
simple_heuristic implications essential_implicants covered_minterms not_covered_minterms false false
else if algorithm = Qmc_SimpleHeuristic_SortEachTime then
simple_heuristic implications essential_implicants covered_minterms not_covered_minterms false true
else if algorithm = Qmc_PetricksMethod then
petricks_method implications back_implications essential_implicants covered_minterms not_covered_minterms
else if algorithm = Qmc_SimpleHeuristic_AdvancedHeuristic then
simple_heuristic implications essential_implicants covered_minterms not_covered_minterms true true
else if algorithm = Qmc_SimpleHeuristic_Best then
let m1 = simple_heuristic implications essential_implicants covered_minterms not_covered_minterms true true in
let m2 = simple_heuristic implications essential_implicants covered_minterms not_covered_minterms false true in
if (List.length m1) < (List.length m2) then m1 else m2
else
raise Not_possible
in
if !should_verify_results then test_minimization_equivalence expr optimized;
optimized