[BACK]Return to cmo.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_toolkit

Diff for /OpenXM/src/ox_toolkit/cmo.c between version 1.14 and 1.15

version 1.14, 2003/08/21 12:44:06 version 1.15, 2003/09/15 09:31:41
Line 1 
Line 1 
 /* -*- mode: C; coding: euc-japan -*- */  /* -*- mode: C; coding: euc-japan -*- */
 /* $OpenXM: OpenXM/src/ox_toolkit/cmo.c,v 1.13 2003/06/05 21:12:07 ohara Exp $ */  /* $OpenXM: OpenXM/src/ox_toolkit/cmo.c,v 1.14 2003/08/21 12:44:06 ohara Exp $ */
   
 /*  /*
    This module includes functions for sending/receiveng CMO's.     This module includes functions for sending/receiveng CMO's.
Line 285  cmo_polynomial_in_one_variable* new_cmo_polynomial_in_
Line 285  cmo_polynomial_in_one_variable* new_cmo_polynomial_in_
     return c;      return c;
 }  }
   
 cmo_recursive_polynomial* new_cmo_recursive_polynomial(cmo* ringdef, cmo* coef)  cmo_recursive_polynomial* new_cmo_recursive_polynomial(cmo_list* ringdef, cmo* coef)
 {  {
     cmo_recursive_polynomial* c = MALLOC(sizeof(cmo_recursive_polynomial));      cmo_recursive_polynomial* c = MALLOC(sizeof(cmo_recursive_polynomial));
     c->tag     = CMO_RECURSIVE_POLYNOMIAL;      c->tag     = CMO_RECURSIVE_POLYNOMIAL;
Line 378  char *new_string_set_cmo(cmo *m)
Line 378  char *new_string_set_cmo(cmo *m)
     case CMO_LIST:      case CMO_LIST:
         return new_string_set_cmo_list((cmo_list *)m);          return new_string_set_cmo_list((cmo_list *)m);
         case CMO_64BIT_MACHINE_DOUBLE:          case CMO_64BIT_MACHINE_DOUBLE:
         return new_string_set_cmo_int32(m);          return new_string_set_cmo_double((cmo_double *)m);
     default:      default:
         ox_printf("unconvertible <%s>\n", get_symbol_by_tag(m->tag));          ox_printf("unconvertible <%s>\n", get_symbol_by_tag(m->tag));
         /* yet not implemented. */          /* yet not implemented. */

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>