MCPcopy Create free account
hub / github.com/creatale/node-dv / IMDebugConfiguration

Function IMDebugConfiguration

deps/tesseract/classify/intmatcher.cpp:727–742  ·  view source on GitHub ↗

* Print debugging information for Configuations * @return none * @note Exceptions: none * @note History: Wed Feb 27 14:12:28 MST 1991, RWM, Created. */

Source from the content-addressed store, hash-verified

725 * @note History: Wed Feb 27 14:12:28 MST 1991, RWM, Created.
726 */
727void 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

Callers 1

Calls 1

cprintfFunction · 0.85

Tested by

no test coverage detected