version 1.23, 2015/08/04 05:24:44 |
version 1.28, 2018/04/03 09:58:30 |
|
|
/* -*- mode: C; coding: euc-japan -*- */ |
/* -*- mode: C; coding: euc-japan -*- */ |
/* $OpenXM: OpenXM/src/ox_toolkit/cmo.c,v 1.22 2007/03/14 10:30:54 ohara Exp $ */ |
/* $OpenXM: OpenXM/src/ox_toolkit/cmo.c,v 1.27 2016/06/30 01:14:00 ohara Exp $ */ |
|
|
/* |
/* |
This module includes functions for sending/receiveng CMO's. |
This module includes functions for sending/receiveng CMO's. |
Some commnets is written in Japanese by the EUC-JP coded |
|
character set. |
|
*/ |
*/ |
|
|
#include <stdio.h> |
#include <stdio.h> |
Line 111 cmo *list_nth(cmo_list* this, int n) |
|
Line 109 cmo *list_nth(cmo_list* this, int n) |
|
return NULL; |
return NULL; |
} |
} |
|
|
|
char *cmo_indeterminate_get_name(cmo_indeterminate *this) |
|
{ |
|
cmo_string *ob = (cmo_string *)this->ob; |
|
return ob->s; |
|
} |
|
|
/* for GNU mpz */ |
/* for GNU mpz */ |
void resize_mpz(mpz_ptr mpz, int size) |
void resize_mpz(mpz_ptr mpz, int size) |
{ |
{ |
Line 257 cmo_qq* new_cmo_qq() |
|
Line 261 cmo_qq* new_cmo_qq() |
|
cmo_bf* new_cmo_bf() |
cmo_bf* new_cmo_bf() |
{ |
{ |
cmo_bf* c = MALLOC(sizeof(cmo_bf)); |
cmo_bf* c = MALLOC(sizeof(cmo_bf)); |
c->tag = CMO_BIGFLOAT; |
c->tag = CMO_BIGFLOAT32; |
mpfr_init(c->mpfr); |
mpfr_init(c->mpfr); |
return c; |
return c; |
} |
} |
|
|
|
cmo_complex* new_cmo_complex() |
|
{ |
|
cmo_complex* c = MALLOC(sizeof(cmo_complex)); |
|
c->tag = CMO_COMPLEX; |
|
return c; |
|
} |
|
|
cmo_qq* new_cmo_qq_set_mpq(mpq_ptr q) |
cmo_qq* new_cmo_qq_set_mpq(mpq_ptr q) |
{ |
{ |
cmo_qq* c = new_cmo_qq(); |
cmo_qq* c = new_cmo_qq(); |
Line 285 cmo_bf* new_cmo_bf_set_mpfr(mpfr_ptr num) |
|
Line 296 cmo_bf* new_cmo_bf_set_mpfr(mpfr_ptr num) |
|
return c; |
return c; |
} |
} |
|
|
|
cmo_complex* new_cmo_complex_set_re_im(cmo *re,cmo *im) |
|
{ |
|
cmo_complex* c = new_cmo_complex(); |
|
c->re = re; |
|
c->im = im; |
|
return c; |
|
} |
|
|
cmo_zero* new_cmo_zero() |
cmo_zero* new_cmo_zero() |
{ |
{ |
cmo_zero* m = MALLOC_ATOMIC(sizeof(cmo_zero)); |
cmo_zero* m = MALLOC_ATOMIC(sizeof(cmo_zero)); |
Line 323 cmo_indeterminate* new_cmo_indeterminate(cmo* ob) |
|
Line 342 cmo_indeterminate* new_cmo_indeterminate(cmo* ob) |
|
return c; |
return c; |
} |
} |
|
|
|
cmo_indeterminate* new_cmo_indeterminate_set_name(char *variable) |
|
{ |
|
return new_cmo_indeterminate(new_cmo_string(variable)); |
|
} |
|
|
cmo_distributed_polynomial* new_cmo_distributed_polynomial() |
cmo_distributed_polynomial* new_cmo_distributed_polynomial() |
{ |
{ |
cmo_distributed_polynomial* c = MALLOC(sizeof(cmo_distributed_polynomial)); |
cmo_distributed_polynomial* c = MALLOC(sizeof(cmo_distributed_polynomial)); |
Line 464 char *new_string_set_cmo(cmo *m) |
|
Line 488 char *new_string_set_cmo(cmo *m) |
|
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. */ |
return NULL; |
return NULL; |
|
} |
|
} |
|
|
|
int cmo_to_int(cmo *n) |
|
{ |
|
switch(n->tag) { |
|
case CMO_ZERO: |
|
return 0; |
|
case CMO_INT32: |
|
return ((cmo_int32 *)n)->i; |
|
case CMO_ZZ: |
|
return mpz_get_si(((cmo_zz *)n)->mpz); |
|
default: |
|
return 0; |
} |
} |
} |
} |