=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/include/ca.h,v retrieving revision 1.22 retrieving revision 1.24 diff -u -p -r1.22 -r1.24 --- OpenXM_contrib2/asir2000/include/ca.h 2001/09/04 08:48:20 1.22 +++ OpenXM_contrib2/asir2000/include/ca.h 2001/09/11 01:30:32 1.24 @@ -45,7 +45,7 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/include/ca.h,v 1.21 2001/09/03 07:01:07 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/include/ca.h,v 1.23 2001/09/07 08:54:58 noro Exp $ */ #include @@ -366,6 +366,20 @@ typedef struct oDL { int td; int d[1]; } *DL; + +/* + * compressed DP + */ + +typedef struct oCDP { + int len; + struct oCM *body; +} *CDP; + +typedef struct oCM { + int index; + int c; +} *CM; typedef struct oVL { V v;