~ubuntu-branches/ubuntu/saucy/gfan/saucy-proposed

« back to all changes in this revision

Viewing changes to determinantpoly.h

  • Committer: Package Import Robot
  • Author(s): Cédric Boutillier
  • Date: 2013-07-09 10:44:01 UTC
  • mfrom: (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130709104401-5q66ozz5j5af0dak
Tags: 0.5+dfsg-3
* Upload to unstable.
* modify remove_failing_tests_on_32bits.patch to replace command of
  0009RenderStairCase test with an empty one instead of deleting it.
* remove lintian override about spelling error

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DETERMINANTPOLY_H_DEFINED
 
2
#define DETERMINANTPOLY_H_DEFINED
 
3
 
 
4
#include "polynomial.h"
 
5
 
 
6
/**
 
7
 * Computes the initial form w.r.t. w of the determinant of the square matrix whose entries are the entries of g.
 
8
 * If takeDerivatives is true, then the matrix to be considered is the Jacobi matrix of g, which is then considered as vector.
 
9
 */
 
10
Polynomial initialFormOfDeterminant(PolynomialSet const &g, IntegerVector const &w, bool takeDerivatives);
 
11
 
 
12
/**
 
13
 * Computes all the codim by codim minors of the Jacobi matrix of g.
 
14
 */
 
15
PolynomialSet jacobiMinors(PolynomialSet const &g, int codim);
 
16
 
 
17
#endif
 
18
 
 
19