My Project  debian-1:4.1.1-p2+ds-4build1
Public Member Functions
groebnerCone_compare Struct Reference

#include <groebnerCone.h>

Public Member Functions

bool operator() (const groebnerCone &sigma, const groebnerCone &theta) const
 

Detailed Description

Definition at line 111 of file groebnerCone.h.

Member Function Documentation

◆ operator()()

bool groebnerCone_compare::operator() ( const groebnerCone sigma,
const groebnerCone theta 
) const
inline

Definition at line 113 of file groebnerCone.h.

114  {
115  const gfan::ZVector p1 = sigma.getInteriorPoint();
116  const gfan::ZVector p2 = theta.getInteriorPoint();
117  assume (p1.size() == p2.size());
118  return p1 < p2;
119  }

The documentation for this struct was generated from the following file:
assume
#define assume(x)
Definition: mod2.h:384
groebnerCone::getInteriorPoint
gfan::ZVector getInteriorPoint() const
Definition: groebnerCone.h:65