00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _MSET_OPERATORS_H_
00021 #define _MSET_OPERATORS_H_
00022
00023 #include<ostream>
00024 using namespace std;
00025
00026 #include "typedefs.h"
00027
00028 template<class PP, class MP, class ST, template<class, typename, typename, template <typename> class> class CC,
00029 template <typename> class ALLOC >
00030 class pattern;
00031
00032 template<class PP, class MP, class PAT_ST, template<typename, typename, typename, template <typename> class> class CC,
00033 template <typename> class ALLOC >
00034 ostream& operator<< (ostream& ostr, const MSET_PATTERN* p) {
00035 typename MSET_PATTERN::CONST_IT it;
00036
00037 for(it=p->begin(); it!=p->end(); it++) {
00038
00039 if(it == p->begin()) {
00040 ostr << (*it).v;
00041 } else {
00042 ostr << " " << (*it).v;
00043 }
00044 }
00045
00046 ostr <<" -- "<<p->_pat_sup;
00047
00048 return ostr;
00049 }
00050
00051 #include "pattern.h"
00052
00053
00054 template<class PP, class MP, class PAT_ST, template<class, typename, typename, template <typename> class> class CC,
00055 template <typename> class ALLOC >
00056 bool pattern<PP,MP,PAT_ST,CC, ALLOC>::operator< (const pattern<PP,MP,PAT_ST,CC, ALLOC> rhs) const {
00057
00058 CONST_IT it=begin(), rhs_it=rhs.begin();
00059
00060 if(size()!=rhs.size()) {
00061 cerr<<"Sequences are not of the same size."<<endl;
00062 exit(0);
00063 }
00064
00065 while(it!=end() && rhs_it!=rhs.end()) {
00066 if((*it).v != (*rhs_it).v)
00067 return (*it) < (*rhs_it);
00068
00069 it++;
00070 rhs_it++;
00071 }
00072
00073
00074 return false;
00075 }
00076
00077 #endif