Exemplo n.º 1
0
//                                 COPY CONSTRUCTOR
inline complexAP::complexAP(const complexAP &c)
{
  mpfc_init_set(&value,  (gmp_CC_struct*)&c.value);
}
Exemplo n.º 2
0
inline complexAP::complexAP(gmp_CC_struct* mpfrCC)
{
  mpfc_init_set(&value, mpfrCC);
}
Exemplo n.º 3
0
 void init_set(elem &result, elem a) const {
   mpfc_init_set(&result,&a);
 }