ct_common
1.0.1
Common library for combinatorial testing
|
00001 //===----- ct_common/common/constraint_l_unary.h ----------------*- C++ -*-===// 00002 // 00003 // The ct_common Library 00004 // 00005 // This file is distributed under the MIT license. See LICENSE for details. 00006 // 00007 //===----------------------------------------------------------------------===// 00008 // 00009 // This header file contains the class for unary logical constraints 00010 // 00011 //===----------------------------------------------------------------------===// 00012 00013 #ifndef CT_COMMON_CONSTRAINT_L_UNARY_H_ 00014 #define CT_COMMON_CONSTRAINT_L_UNARY_H_ 00015 00016 #include <boost/shared_ptr.hpp> 00017 #include <ct_common/common/utils.h> 00018 #include <ct_common/common/constraint_l.h> 00019 00020 namespace ct { 00021 namespace common { 00025 class DLL_EXPORT Constraint_L_Unary : public Constraint_L { 00026 public: 00027 Constraint_L_Unary(void); 00028 Constraint_L_Unary(const Constraint_L_Unary &from); 00029 Constraint_L_Unary &operator = (const Constraint_L_Unary &right); 00030 virtual ~Constraint_L_Unary(void); 00031 00032 virtual std::string get_class_name(void) const; 00033 static std::string class_name(void); 00034 virtual void dump(std::ostream &os, const std::vector<boost::shared_ptr<ParamSpec> > ¶m_specs) const; 00036 virtual std::string get_op_token(void) const = 0; 00037 00038 boost::shared_ptr<const Constraint> get_oprd(void) const { return boost::dynamic_pointer_cast<Constraint>(this->oprds_[0]); } 00039 void set_oprd(const boost::shared_ptr<TreeNode> &oprd) { this->oprds_[0] = oprd; } 00040 00041 virtual EvalType_Bool Evaluate(const std::vector<boost::shared_ptr<ParamSpec> > ¶m_specs, 00042 const Assignment &assignment) const; 00043 00044 private: 00046 virtual bool evaluate_func(bool val) const = 0; 00047 00048 }; 00049 } // namespace common 00050 } // namespace ct 00051 00052 #endif // CT_COMMON_CONSTRAINT_L_UNARY_H_