Data Structures | Functions
GMPrat.h File Reference
#include <coeffs/si_gmp.h>

Go to the source code of this file.

Data Structures

class  Rational
 
struct  Rational::rep
 

Functions

Rational operator+ (const Rational &, const Rational &)
 
Rational operator- (const Rational &, const Rational &)
 
Rational operator* (const Rational &, const Rational &)
 
Rational operator/ (const Rational &, const Rational &)
 

Function Documentation

Rational operator* ( const Rational ,
const Rational  
)

Definition at line 410 of file GMPrat.cc.

411 {
412  Rational
413  erg(a);
414 
415  return erg*=b;
416 }
const poly a
Definition: syzextra.cc:212
const poly b
Definition: syzextra.cc:213
Rational operator+ ( const Rational ,
const Rational  
)

Definition at line 392 of file GMPrat.cc.

393 {
394  Rational
395  erg(a);
396 
397  return erg+=b;
398 }
const poly a
Definition: syzextra.cc:212
const poly b
Definition: syzextra.cc:213
Rational operator- ( const Rational ,
const Rational  
)

Definition at line 401 of file GMPrat.cc.

402 {
403  Rational
404  erg(a);
405 
406  return erg-=b;
407 }
const poly a
Definition: syzextra.cc:212
const poly b
Definition: syzextra.cc:213
Rational operator/ ( const Rational ,
const Rational  
)

Definition at line 429 of file GMPrat.cc.

430 {
431  Rational
432  erg(a);
433 
434  return erg/=b;
435 }
const poly a
Definition: syzextra.cc:212
const poly b
Definition: syzextra.cc:213