* Print debugging information for Configuations * @return none * @note Exceptions: none * @note History: Wed Feb 27 14:12:28 MST 1991, RWM, Created. */
| 748 | * @note History: Wed Feb 27 14:12:28 MST 1991, RWM, Created. |
| 749 | */ |
| 750 | void IMDebugConfigurationSum(int FeatureNum, |
| 751 | uinT8 *FeatureEvidence, |
| 752 | inT32 ConfigCount) { |
| 753 | cprintf("F=%3d, C=", FeatureNum); |
| 754 | for (int ConfigNum = 0; ConfigNum < ConfigCount; ConfigNum++) { |
| 755 | cprintf("%4d", FeatureEvidence[ConfigNum]); |
| 756 | } |
| 757 | cprintf("\n"); |
| 758 | } |
| 759 | |
| 760 | /** |
| 761 | * For the given feature: prune protos, compute evidence, |
no test coverage detected