susy_cfa  b611ccad937ea179f86a1f5663960264616c0a20
cut.cpp
Go to the documentation of this file.
1 #include "cut.hpp"
2 
3 class small_tree;
4 
6  tree_(NULL),
7  compare_(kGreaterEqual){
8 }
9 
11  InequalityType greater):
12  tree_(tree),
13  compare_(greater){
14  }
15 
16 bool CutBase::Pass() const{
17  return false;
18 }
19 
20 CutBase::operator bool(){
21  return Pass();
22 }
23 
25 }
InequalityType
Definition: cut.hpp:7
InequalityType compare_
Definition: cut.hpp:26
small_tree const * tree_
Definition: cut.hpp:25
virtual bool Pass() const
Definition: cut.cpp:16
CutBase()
Definition: cut.cpp:5
virtual ~CutBase()
Definition: cut.cpp:24