* Print debugging information for Configuations * @return none * @note Exceptions: none * @note History: Wed Feb 27 14:12:28 MST 1991, RWM, Created. */
| 725 | * @note History: Wed Feb 27 14:12:28 MST 1991, RWM, Created. |
| 726 | */ |
| 727 | void IMDebugConfiguration(int FeatureNum, |
| 728 | uinT16 ActualProtoNum, |
| 729 | uinT8 Evidence, |
| 730 | BIT_VECTOR ConfigMask, |
| 731 | uinT32 ConfigWord) { |
| 732 | cprintf ("F = %3d, P = %3d, E = %3d, Configs = ", |
| 733 | FeatureNum, (int) ActualProtoNum, (int) Evidence); |
| 734 | while (ConfigWord) { |
| 735 | if (ConfigWord & 1) |
| 736 | cprintf ("1"); |
| 737 | else |
| 738 | cprintf ("0"); |
| 739 | ConfigWord >>= 1; |
| 740 | } |
| 741 | cprintf ("\n"); |
| 742 | } |
| 743 | |
| 744 | /** |
| 745 | * Print debugging information for Configuations |
no test coverage detected