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

« back to all changes in this revision

Viewing changes to codimoneconnectedness.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
#include "vektor.h"
 
2
 
 
3
class CodimOneConnectednessTester
 
4
{
 
5
  list<IntegerVectorList> data;
 
6
 public:
 
7
  /**
 
8
     Adds a facet orbit. The list of vectors is the canonoical
 
9
     symmetry (w.r.t. symmetries of the ridge) invariant interior
 
10
     points of its ridges. Futhermore, these should be unique orbit
 
11
     representatives rather than just vectors.
 
12
   */
 
13
  void insertFacetOrbit(IntegerVectorList const &ridges);
 
14
  /*
 
15
    BE CAREFUL WHEN MAKING CONCLUSIONS - THIS ROUINE DOES NOT SUPPORT SYMMETRY.
 
16
   */
 
17
  bool isConnected()const;
 
18
};