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

« back to all changes in this revision

Viewing changes to minkowskidual.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 MINKOWSKIDUAL_H_INCLUDED
 
2
#define MINKOWSKIDUAL_H_INCLUDED
 
3
 
 
4
#include "polyhedralfan.h"
 
5
#include "polynomial.h"
 
6
#include "symmetriccomplex.h"
 
7
 
 
8
/*
 
9
  The dual Minkowski routine is used for extracting the normal cones
 
10
  of the mixed faces of symmetric Minkowski sum. The point is that in
 
11
  order not to compute all faces one must do the face extraction in
 
12
  the oppisite order of what is currently done in PolyhedralFan.
 
13
  Equivalently, in the usual order for the dual polytope.
 
14
 */
 
15
 
 
16
/*
 
17
  cones contains only full dimensional cones.
 
18
 */
 
19
SymmetricComplex dualMinkowskiMixed(PolynomialSet const &g, SymmetryGroup const &sym, PolyhedralFan const &cones);
 
20
 
 
21
#endif