File: binomial.h

package info (click to toggle)
gfan 0.5%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,348 kB
  • ctags: 5,683
  • sloc: cpp: 39,675; makefile: 454; sh: 1
file content (10 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
#ifndef BINOMIAL_H_INCLUDED
#define BINOMIAL_H_INCLUDED

#include "vektor.h"
#include "polynomial.h"

IntegerVector binomialToIntegerVector(Polynomial const &p);
Polynomial integerVectorToBinomial(IntegerVector const &v, PolynomialRing const &r);

#endif