home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 7 / POWERCD7.ISO / prgmming / clipper / levensht.ch < prev    next >
Text File  |  1993-03-24  |  331b  |  20 lines

  1.  
  2. /*
  3.  * This is the include file for levenshtein string distances
  4.  */
  5.  
  6. #ifndef _LEVENSHT_CH_
  7.  
  8. #define _LEVENSHT_CH_
  9.  
  10. #define LV_MATCH  1
  11. #define LV_INS    2
  12. #define LV_DEL    3
  13. #define LV_SUB    4
  14.  
  15.  
  16. #translate DIST(<i>, <j>) =>                       ;
  17.                            matrix\[<j>\]\[<i>\]\[1\]
  18.  
  19. #endif
  20.