mul.h 291 B

12345678910111213141516
  1. /*
  2. * File: dclxvi-20130329/mul.h
  3. * Author: Ruben Niederhagen, Peter Schwabe
  4. * Public Domain
  5. */
  6. #ifndef MUL_H
  7. #define MUL_H
  8. #include "mydouble.h"
  9. void polymul(mydouble *h, const mydouble *f, const mydouble *g);
  10. void degred(mydouble *h);
  11. void coeffred_round_par(mydouble *h);
  12. #endif