Sat Mar 23 11:52:36 2019 counterfeit_detection_test Python version: 3.6.8 Test counterfeit_detection. counterfeit_detection_brute_test Python version: 3.6.8 Test counterfeit_detection_brute, which seeks to identify multiple counterfeit coins among n coins using brute force. There were 7 fakes Indices of fakes: 0: 2 40.3417 1: 3 40.3417 2: 14 40.3417 3: 43 40.3417 4: 55 40.3417 5: 62 40.3417 6: 74 40.3417 The function found 7 suspects. Indices of suspects: 0: 2 40.3417 1: 3 40.3417 2: 14 40.3417 3: 43 40.3417 4: 55 40.3417 5: 62 40.3417 6: 74 40.3417 counterfeit_detection_combinatorial_test Python version: 3.6.8 Test counterfeit_detection_combinatorial, which can identify one counterfeit coin among 2^logn-1 coins using just logn comparisons. 7 coins were checked The fake coin was number 0 3 comparisons were made The suspected coin is number 0 counterfeit_detection_compressed_test Python version: 3.6.8 Test counterfeit_detection_compressed, which seeks to identify multiple counterfeit coins among n coins using compressed sensing techniques. There are 100 coins to check. The correct coin weight is 17 There were 3 fakes Fake Index Weight:: 0: 32 17.5 1: 73 17.5 2: 88 17.5 20 random subsets were weighed. The function found 20 suspects. Suspect Index Weight: 0: 3 17 1: 6 17 2: 15 17 3: 18 17 4: 23 17 5: 25 17 6: 27 17 7: 32 17.5 8: 47 17 9: 49 17 10: 56 17 11: 67 17 12: 72 17 13: 73 17.5 14: 88 17.5 15: 90 17 16: 93 17 17: 95 17 18: 96 17 19: 98 17 The test failed. counterfeit_detection_test: Normal end of execution. Sat Mar 23 11:52:37 2019