#include <fuzzyvar.h>
Inheritance diagram for NLAIFUZZY::CFuzzyVar:
|
Definition at line 46 of file agent_operator.h.
|
|
Definition at line 38 of file fuzzyvar.cpp. Referenced by clone(), and newInstance().
|
|
Definition at line 49 of file fuzzyvar.cpp.
|
|
Definition at line 56 of file fuzzyvar.cpp. References _Max, _Min, and _Value.
|
|
Definition at line 63 of file fuzzyvar.cpp. References _facts, _qual, and _sets.
00064 { 00065 00066 std::vector<IFuzzySet *>::const_iterator it_fs = _sets.begin(); 00067 while ( it_fs != _sets.end() ) 00068 { 00069 ( *it_fs )->release(); 00070 it_fs++; 00071 } 00072 00073 std::vector<CFuzzyFact *>::const_iterator it_f = _facts.begin(); 00074 while ( it_f != _facts.end() ) 00075 { 00076 ( *it_f )->release(); 00077 it_f++; 00078 } 00079 00080 std::vector<NLAIAGENT::CStringVarName *>::const_iterator it_q = _qual.begin(); 00081 while ( it_q != _qual.end() ) 00082 { 00083 ( *it_q )->release(); 00084 it_q++; 00085 } 00086 } |
|
Definition at line 152 of file fuzzyvar.cpp. References _facts, and getSet().
|
|
Definition at line 135 of file fuzzyvar.cpp. References _facts.
00136 { 00137 _facts.push_back(f); 00138 } |
|
Definition at line 88 of file fuzzyvar.cpp. References _qual, _sets, and NLAIC::IPointerGestion::incRef(). Referenced by init(), and runMethodeMember().
00089 { 00090 _sets.push_back(my_set); 00091 my_set->incRef(); 00092 NLAIAGENT::CStringVarName *qual = new NLAIAGENT::CStringVarName( set_name ); 00093 _qual.push_back( qual ); 00094 } |
|
The method canProcessMessage(const IVarName &msgName) allow us to know if agent can preocess given by msgName. TQueue contain the liste of method (same as a run(msg)) that coud process the msg. Reimplemented in NLAIAGENT::CLocalAgentMail. Definition at line 350 of file baseai.cpp. References NLAIAGENT::TQueue. Referenced by NLAIAGENT::CLocalAgentMail::canProcessMessage().
00351 { 00352 return TQueue(); 00353 } |
|
This function allow a pointer copy, that mean that the new class have the sam attributs caracteristics as the owne. Implements NLAIC::IBasicType. Definition at line 174 of file fuzzyvar.cpp. References CFuzzyVar().
|
|
Decrement the reference of an object.
Definition at line 93 of file abstract_interface.h. References NLAIC::IPointerGestion::_Ref, and sint32. Referenced by NLAIC::IPointerGestion::release(), and NLAIAGENT::CAgentTimerHandle::~CAgentTimerHandle().
00094 {
00095 return --_Ref;
00096 }
|
|
Definition at line 96 of file fuzzyvar.cpp. References _sets, membership(), and sint32.
00097 { 00098 std::list<CFuzzyFact *> *result = new std::list<CFuzzyFact *>; 00099 for ( sint32 i = 0; i < (sint32) _sets.size(); i++ ) 00100 { 00101 if ( _sets[i]->isIn( val ) ) 00102 { 00103 result->push_back( new CFuzzyFact( _sets[i], _sets[i]->membership(val) ) ); 00104 } 00105 } 00106 return result; 00107 } |
|
Implements NLMISC::IClassable. Reimplemented in NLAIC::CIdentType. Definition at line 116 of file abstract_interface.h. Referenced by NLAISCRIPT::CAgentClass::isClassInheritedFrom().
00117 { 00118 return std::string("<unnamed>"); 00119 } |
|
Definition at line 290 of file fuzzyvar.cpp. References getSet().
00291 { 00292 IFuzzySet *my_set = getSet( name ); 00293 if ( my_set ) 00294 { 00295 return new CSimpleFuzzyCond( this, my_set ); 00296 } 00297 else 00298 return NULL; 00299 } |
|
This is a Debug function, text is an character pointer to receive the debug text output, the debug text containe all think sensible to interset user. Implements NLAIC::IBasicType. Definition at line 221 of file fuzzyvar.cpp. References _sets, NLAILOGIC::IBaseVar::getName(), sint32, and NLAIC::stringGetBuild(). Referenced by runMethodeMember().
00222 { 00223 txt += NLAIC::stringGetBuild("CFuzzyVar<%s> = %f\n", getName().getString(), _Value); 00224 for(sint32 i = 0; i < (sint32) _sets.size(); i++) 00225 { 00226 if ( _sets[i]->isIn( _Value ) ) 00227 { 00228 std::string buf; 00229 _sets[i]->getDebugString(buf); 00230 txt += NLAIC::stringGetBuild(" %s %f\n", buf.c_str(), _sets[i]->membership( _Value ) ); 00231 } 00232 } 00233 } |
|
Definition at line 292 of file abstract_interface.h. References NLAIC::IBasicType::getDebugString(), and s.
00293 { 00294 std::string s; 00295 getDebugString(s); 00296 return s; 00297 } |
|
The methode getMethodeMemberDebugString(sint32 heritance, sint32 index) return a string that define the name and the argument of the method Reimplemented in NLAIAGENT::CAgentScript. Definition at line 311 of file baseai.cpp. References sint32. Referenced by NLAISCRIPT::CCallHeapMethodi::getDebugResult(), NLAISCRIPT::CCallStackMethodi::getDebugResult(), NLAISCRIPT::CCallMethodi::getDebugResult(), NLAISCRIPT::CLibHeapMemberMethod::getDebugResult(), NLAISCRIPT::CLibStackNewMemberMethod::getDebugResult(), NLAISCRIPT::CLibStackMemberMethod::getDebugResult(), NLAISCRIPT::CLibCallMethodi::getDebugResult(), NLAISCRIPT::CLibCallInheritedMethod::getDebugResult(), NLAISCRIPT::CLibCallMethod::getDebugResult(), NLAISCRIPT::CLibMemberMethodi::getDebugResult(), NLAISCRIPT::CLibMemberInheritedMethod::getDebugResult(), and NLAISCRIPT::CLibMemberMethod::getDebugResult().
00312 { 00313 switch(id) 00314 { 00315 case 0: 00316 { 00317 return std::string("IObjectIA::sendMessage(IMessage)"); 00318 } 00319 break; 00320 case 1: 00321 break; 00322 case 2: 00323 return std::string("IObjectIA::run()"); 00324 break; 00325 00326 case 3: 00327 { 00328 return std::string("IObjectIA::getStaticMember(Integer)"); 00329 } 00330 } 00331 return std::string("Mathod_?????(Param_?????)"); 00332 } |
|
getMethodIndexSize define the nomber of method define in the class. Reimplemented from NLAILOGIC::IBaseVar. Definition at line 301 of file fuzzyvar.cpp. References sint32.
00302 {
00303 return IObjetOp::getMethodIndexSize() + 2;
00304 }
|
|
Definition at line 106 of file var.cpp. Referenced by getDebugString(), NLAIFUZZY::CSimpleFuzzyCond::getDebugString(), NLAISCRIPT::COperatorClass::getVarPos(), and runMethodeMember().
00107 { 00108 return *_Name; 00109 } |
|
Definition at line 165 of file agent_operator.h. References NLAIC::IBasicType::clone(), and NLAIAGENT::IObjetOp::neg(). Referenced by NLAISCRIPT::CNegOpCode::runOpCode().
|
|
get the refence count.
Definition at line 99 of file abstract_interface.h. References NLAIC::IPointerGestion::_Ref, and sint32. Referenced by NLAIAGENT::CAgentTimerHandle::~CAgentTimerHandle().
00100 {
00101 return _Ref;
00102 }
|
|
Definition at line 140 of file fuzzyvar.cpp. References _sets. Referenced by NLAIFUZZY::CFuzzyRule::addConc(), NLAIFUZZY::CFuzzyRule::addCond(), addFact(), and getCond().
|
|
to get the pointer of a given components referened by an string. Definition at line 261 of file baseai.h. References NLAIAGENT::IObjectIA::getStaticMember(), and NLAIAGENT::IObjectIA::getStaticMemberIndex().
00262 { 00263 return getStaticMember(getStaticMemberIndex(compName)); 00264 } |
|
|
to get the index of a given components name. Reimplemented in NLAIAGENT::CLocalAgentMail, NLAIAGENT::CAgentScript, and NLAIAGENT::CMessageScript. Definition at line 188 of file baseai.cpp. References sint32. Referenced by NLAISCRIPT::CCompilateur::affectation(), NLAIAGENT::CComponentHandle::getComponent(), NLAIAGENT::IObjectIA::getStaticMember(), NLAIAGENT::CLocalAgentMail::getStaticMemberIndex(), NLAISCRIPT::CCompilateur::getValidateHierarchyBase(), NLAISCRIPT::CCompilateur::isValidateVarName(), NLAISCRIPT::CCodeBrancheRunDebug::printVariable(), NLAISCRIPT::CCompilateur::processingVar(), NLAISCRIPT::CConstraintStackComp::run(), and NLAIAGENT::IObjectIA::setStaticMember().
00189 {
00190 return -1;
00191 }
|
|
Static member is the component that the agent is create and die with. getStaticMemberSize to get the size of the static member components Reimplemented in NLAIAGENT::CLocalAgentMail, NLAIAGENT::CAgentScript, NLAIAGENT::CMessageScript, NLAISCRIPT::IClassInterpret, and NLAISCRIPT::CAgentClass. Definition at line 180 of file baseai.cpp. References NLAIC::IBasicType::getType(), sint32, and NLAIC::stringGetBuild(). Referenced by NLAIAGENT::CLocalAgentMail::getStaticMemberSize().
00181 { 00182 std::string text; 00183 text = NLAIC::stringGetBuild("sint32 IObjectIA::getStaticMemberSize() note implementaited for the '%s' interface",(const char *)getType()); 00184 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00185 return 0; 00186 } |
|
getType return a unique string how represente the class, it can be the name of the class. This function is used for the sytem regstry class (see the definition of the template class Gen::CRegistry). Implements NLAIC::IBasicType. Definition at line 250 of file fuzzyvar.cpp. References IdFuzzyVar.
00251 { 00252 return IdFuzzyVar; 00253 } |
|
Implements NLAILOGIC::IBaseVar. Definition at line 169 of file fuzzyvar.cpp.
00170 { 00171 return new NLAIAGENT::DigitalType( (float) _Value ); 00172 } |
|
|
Init method alows to init the attribut of an object. the maparmetre is in more time a list of IObjectIA. Reimplemented from NLAIAGENT::IObjectIA. Definition at line 358 of file fuzzyvar.cpp. References addSet(), NLAIFUZZY::IFuzzySet::getName(), and params.
00359 { 00360 NLAIAGENT::IBaseGroupType *params = ((NLAIAGENT::IBaseGroupType *)p); 00361 00362 if ( params->size() < 2 ) 00363 { 00364 // throw Exc:: 00365 } 00366 00367 // Nom 00368 IObjectIA * arg = (IObjectIA *) params->popFront(); 00369 strcpy(_Name, ((NLAIAGENT::IVarName *) arg)->getString() ); 00370 00371 // Sous ensembles 00372 while ( params->size() ) 00373 { 00374 IFuzzySet *set = (IFuzzySet *) params->getFront()->clone(); 00375 addSet( set, set->getName() ); 00376 params->popFront(); 00377 } 00378 } |
|
|
|
|
|
isClassInheritedFrom(className) allow us to known if this class have a base class with the name className. If true the method return the range of the base class, this range is an arbitrary reference id define by the programmer or bay the scrypt. the false return is define by -1. Reimplemented in NLAIAGENT::IVector, NLAIAGENT::CLocalAgentMail, NLAIAGENT::INombreDefine, NLAIAGENT::IBaseGroupType, and NLAIAGENT::CMessageScript. Definition at line 246 of file baseai.cpp. References sint32. Referenced by NLAISCRIPT::CCompilateur::getValidateHierarchyBase(), NLAIAGENT::CLocalAgentMail::isClassInheritedFrom(), NLAIAGENT::CActorScript::Launch(), NLAIAGENT::CFsmScript::setTopLevel(), and NLAIAGENT::CActorScript::setTopLevel().
00247 {
00248 return -1;
00249 }
|
|
|
Definition at line 240 of file fuzzyvar.cpp.
|
|
Definition at line 235 of file fuzzyvar.cpp. References _Value.
00236 { 00237 return _Value == a._Value; 00238 } |
|
Definition at line 280 of file fuzzyvar.cpp. References NLAIFUZZY::IFuzzySet::isIn(). Referenced by NLAIFUZZY::CSimpleFuzzyCond::isTrue().
00281 {
00282 return my_set->isIn(_Value);
00283 }
|
|
If the result is true the object is loclal else its a representation of an object on the server. By the method return true.
Definition at line 356 of file baseai.cpp.
00357 { 00358 return true; 00359 } |
|
The method isMember(nameSubClass,methodName,param) return the best method correspondent to the search. remember we use the overloadind method. NameSubClass: if this pointer is not NULL then NameSubClass is the name of the base class were the method are defined. methodName: is the name of the class. param: is an IObjectIA where it defined the parametre of the method. lot of method use a IObjectIA vector object with an NLAIC::CIdentType as the the template argm. Reimplemented in NLAIAGENT::IBasicAgent, NLAIAGENT::IVector, NLAIAGENT::CLocalAgentMail, NLAIAGENT::INombreDefine, NLAIAGENT::CPairType, NLAIAGENT::IBaseGroupType, NLAIAGENT::CVectorGroupType, NLAIAGENT::CProxyAgentMail, NLAIAGENT::CAgentTimerHandle, NLAIAGENT::IListBasicManager, NLAIAGENT::CMessageScript, and NLAIAGENT::IMessageBase. Definition at line 206 of file baseai.cpp. References _CONSTRUCTOR_, _RUN_, _SEND_, param, r, NLAIAGENT::IObjectIA::run(), and NLAIAGENT::TQueue. Referenced by NLAIAGENT::CAgentWatchTimer::addAttrib(), NLAISCRIPT::CCompilateur::findMethode(), NLAISCRIPT::CAgentClass::isMember(), NLAIAGENT::CLocalAgentMail::isMember(), and NLAISCRIPT::CFindRunMsg::runOpCode().
00207 { 00208 static CStringVarName send(_SEND_); 00209 static CStringVarName constructor(_CONSTRUCTOR_); 00210 static CStringVarName run(_RUN_); 00211 static CStringVarName statM("GetStaticMember"); 00212 00213 if(*methodName == send) 00214 { 00215 TQueue r; 00216 CObjectType *c = new CObjectType(new NLAIC::CIdentType(NLAIC::CIdentType::VoidType)); 00217 r.push(CIdMethod(0,0.0,NULL,c)); 00218 return r; 00219 } 00220 else 00221 if(*methodName == constructor && !((const NLAISCRIPT::CParam &)param).size()) 00222 { 00223 TQueue r; 00224 CObjectType *c = new CObjectType(new NLAIC::CIdentType(NLAIC::CIdentType::VoidType)); 00225 r.push(CIdMethod(1,0.0,NULL,c)); 00226 return r; 00227 } 00228 else 00229 if(*methodName == run && !((const NLAISCRIPT::CParam &)param).size()) 00230 { 00231 TQueue r; 00232 CObjectType *c = new CObjectType(new NLAIC::CIdentType(NLAIC::CIdentType::VoidType)); 00233 r.push(CIdMethod(2,0.0,NULL,c)); 00234 return r; 00235 } 00236 if(*methodName == statM && ((const NLAISCRIPT::CParam &)param).size()) 00237 { 00238 TQueue r; 00239 CObjectType *c = new CObjectType(new NLAIC::CIdentType(*IAgent::IdAgent)); 00240 r.push(CIdMethod(3,0.0,NULL,c)); 00241 return r; 00242 } 00243 return TQueue(); 00244 } |
|
Reimplemented from NLAILOGIC::IBaseVar. Definition at line 381 of file fuzzyvar.cpp. References _ADDSUBSET_, _UNFUZIFY_, param, and NLAIAGENT::TQueue.
00382 { 00383 TQueue result; 00384 00385 result = IBaseVar::isMember(className, name, param); 00386 00387 if ( result.size() ) 00388 return result; 00389 00390 if(className != NULL) 00391 { 00392 if ( *name == CStringVarName( _ADDSUBSET_ ) ) 00393 { 00394 IObjectIA *op_type = (IObjectIA *) new NLAISCRIPT::COperandVoid(); 00395 result.push( NLAIAGENT::CIdMethod(1 + IObjetOp::getMethodIndexSize(), 0.0,NULL, op_type ) ); 00396 } 00397 if ( *name == CStringVarName(_UNFUZIFY_) ) 00398 { 00399 IObjectIA *op_type = (IObjectIA *) new NLAISCRIPT::COperandSimple( new NLAIC::CIdentType( DigitalType::IdDigitalType) ); 00400 result.push( NLAIAGENT::CIdMethod(2 + IObjetOp::getMethodIndexSize(), 0.0, NULL, op_type ) ); 00401 } 00402 } 00403 return result; 00404 } |
|
throw (NLAIE::CExceptionNotImplemented)
Implements NLAIAGENT::IObjetOp. Definition at line 245 of file fuzzyvar.cpp.
00246 { 00247 return false; 00248 } |
|
Load the class from a stream. Implements NLAIC::IBasicInterface. Definition at line 201 of file fuzzyvar.cpp. References _sets, NLAIC::IBasicInterface::load(), NLMISC::IStream::serial(), and sint32. Referenced by NLAIFUZZY::CFuzzyRule::load().
00202 { 00203 IObjectIA::load( is ); 00204 00205 is.serial( _Value ); 00206 is.serial( _Min ); 00207 is.serial( _Max ); 00208 00209 sint32 nb_sets; 00210 is.serial( nb_sets ); 00211 for (sint32 i = 0; i < nb_sets; i++ ) 00212 { 00213 NLAIC::CIdentTypeAlloc id; 00214 is.serial( id ); 00215 IFuzzySet *tmp_val = (IFuzzySet *) id.allocClass(); 00216 tmp_val->load( is ); 00217 _sets.push_back( tmp_val ); 00218 } 00219 } |
|
Definition at line 285 of file fuzzyvar.cpp. References NLAIFUZZY::IFuzzySet::membership(). Referenced by fuzzify(), and NLAIFUZZY::CSimpleFuzzyCond::truthValue().
00286 { 00287 return (float) my_set->membership( _Value); 00288 } |
|
|
This function allow a new instance, that mean that the class is a class factory. Implements NLAIC::IBasicType. Definition at line 180 of file fuzzyvar.cpp. References CFuzzyVar(), and x.
00181 { 00182 NLAIAGENT::CStringVarName x("Inst"); 00183 CFuzzyVar *instance = new CFuzzyVar(x,0,0); 00184 return instance; 00185 } |
|
throw (NLAIE::CExceptionNotImplemented)
Definition at line 202 of file agent_operator.h.
00203 { 00204 return *this * *a; 00205 00206 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 147 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00148 { 00149 std::string text; 00150 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator * (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00151 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00152 return (IObjetOp *)this; 00153 } |
|
throw (NLAIE::CExceptionNotImplemented)
Definition at line 182 of file agent_operator.h.
00183 { 00184 return *this *= *a; 00185 00186 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::CAgentOperation, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 110 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00111 { 00112 std::string text; 00113 text = NLAIC::stringGetBuild("opertor <IObjectIA &operator *= (const IObjectIA &a)> note implemented for the '%s' interface",(const char *)getType()); 00114 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00115 return *this; 00116 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::IBaseGroupType, NLAIAGENT::IListBasicManager, NLAIFUZZY::FuzzyType, NLAILOGIC::CBoolType, NLAILOGIC::CClause, NLAILOGIC::CValueSet, NLAILOGIC::CVarSet, NLAISCRIPT::CVarPStack, NLAISCRIPT::CVarPStackParam, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 245 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00246 { 00247 std::string text; 00248 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator ! () const> note implemented for the '%s' interface",(const char *)getType()); 00249 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00250 return (IObjetOp *)this; 00251 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::IVector, NLAIAGENT::INombre< tNombre >, NLAIAGENT::CStringType, NLAIFUZZY::FuzzyType, NLAILOGIC::CBoolType, NLAILOGIC::CClause, NLAILOGIC::CVarSet, NLAISCRIPT::CVarPStack, NLAISCRIPT::CVarPStackParam, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 252 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00253 { 00254 std::string text; 00255 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator != (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00256 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00257 return (IObjetOp *)this; 00258 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::CGroupType, and NLAIAGENT::CVectorGroupType. Definition at line 193 of file agent_operator.h.
00194 { 00195 return *this + *a; 00196 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::IVector, NLAIAGENT::INombre< tNombre >, NLAIAGENT::CGroupType, NLAIAGENT::CVectorGroupType, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 131 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00132 { 00133 std::string text; 00134 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator + (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00135 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00136 return (IObjetOp *)this; 00137 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::IBaseGroupType. Definition at line 173 of file agent_operator.h.
00174 { 00175 return *this += *a; 00176 } |
|
add the operater by anather. We do'nt make a pure virtual for this methods because we didn't wont to make development too many long, we prefer to put an exception to warn developer when this method is'nt define in the derivation class. Reimplemented in NLAIAGENT::IVector, NLAIAGENT::INombre< tNombre >, NLAIAGENT::CStringType, NLAIAGENT::IBaseGroupType, NLAIAGENT::IListBasicManager, NLAIAGENT::CAgentOperation, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 83 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00084 { 00085 std::string text; 00086 text = NLAIC::stringGetBuild("opertor <IObjectIA &operator += (const IObjectIA &a)> note implemented for the '%s' interface",(const char *)getType()); 00087 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00088 return *this; 00089 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::CGroupType, and NLAIAGENT::CVectorGroupType. Definition at line 197 of file agent_operator.h.
00198 { 00199 return *this - *a; 00200 00201 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::IVector, NLAIAGENT::INombre< tNombre >, NLAIAGENT::CGroupType, NLAIAGENT::CVectorGroupType, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 139 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00140 { 00141 std::string text; 00142 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator - (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00143 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00144 return (IObjetOp *)this; 00145 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::IBaseGroupType. Definition at line 177 of file agent_operator.h.
00178 { 00179 return *this -= *a; 00180 00181 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::IVector, NLAIAGENT::INombre< tNombre >, NLAIAGENT::CStringType, NLAIAGENT::IBaseGroupType, NLAIAGENT::IListBasicManager, NLAIAGENT::CAgentOperation, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 92 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00093 { 00094 std::string text; 00095 text = NLAIC::stringGetBuild("opertor <IObjectIA &operator -= (const IObjectIA &a)> note implemented for the '%s' interface",(const char *)getType()); 00096 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00097 return *this; 00098 } |
|
throw (NLAIE::CExceptionNotImplemented)
Definition at line 207 of file agent_operator.h.
00208 { 00209 return *this / *a; 00210 00211 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 155 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00156 { 00157 std::string text; 00158 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator / (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00159 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00160 return (IObjetOp *)this; 00161 } |
|
throw (NLAIE::CExceptionNotImplemented)
Definition at line 187 of file agent_operator.h.
00188 { 00189 return *this /= *a; 00190 00191 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::CAgentOperation, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 119 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00120 { 00121 std::string text; 00122 text = NLAIC::stringGetBuild("opertor <IObjectIA &operator /= (const IObjectIA &a)> note implemented for the '%s' interface",(const char *)getType()); 00123 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00124 return *this; 00125 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::CStringType, NLAIFUZZY::FuzzyType, NLAILOGIC::CBoolType, NLAISCRIPT::CVarPStack, NLAISCRIPT::CVarPStackParam, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 213 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00214 { 00215 std::string text; 00216 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator < (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00217 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00218 return (IObjetOp *)this; 00219 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::CStringType, NLAIFUZZY::FuzzyType, NLAILOGIC::CBoolType, NLAISCRIPT::CVarPStack, NLAISCRIPT::CVarPStackParam, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 229 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00230 { 00231 std::string text; 00232 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator <= (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00233 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00234 return (IObjetOp *)this; 00235 } |
|
Lot of algo use this function to determine the equality between 2 class, in particular the extraction from stl list. the == operator call the bool isEqual(const IBasicObjectIA &a) const member method to determine the equality between tow class. Definition at line 134 of file baseai.cpp. References NLAIC::IBasicType::getType(), and NLAIAGENT::IBasicObjectIA::isEqual().
|
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented from NLAIAGENT::IObjetOp. Definition at line 270 of file fuzzyvar.cpp.
00271 {
00272 return NULL;
00273 }
|
|
Definition at line 255 of file fuzzyvar.cpp.
00256 { 00257 return false;// _Value = var->getValue() 00258 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::CStringType, NLAIFUZZY::FuzzyType, NLAILOGIC::CBoolType, NLAISCRIPT::CVarPStack, NLAISCRIPT::CVarPStackParam, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 221 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00222 { 00223 std::string text; 00224 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator > (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00225 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00226 return (IObjetOp *)this; 00227 } |
|
throw (NLAIE::CExceptionNotImplemented)
Reimplemented in NLAIAGENT::INombre< tNombre >, NLAIAGENT::CStringType, NLAIFUZZY::FuzzyType, NLAILOGIC::CBoolType, NLAISCRIPT::CVarPStack, NLAISCRIPT::CVarPStackParam, NLAIAGENT::INombre< double >, NLAIAGENT::INombre< uint16 >, NLAIAGENT::INombre< float >, NLAIAGENT::INombre< sint8 >, NLAIAGENT::INombre< uint64 >, NLAIAGENT::INombre< sint16 >, NLAIAGENT::INombre< uint8 >, NLAIAGENT::INombre< uint32 >, and NLAIAGENT::INombre< sint32 >. Definition at line 237 of file agent_operator.h. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00238 { 00239 std::string text; 00240 text = NLAIC::stringGetBuild("opertor <virtual IObjetOp *operator >= (const IObjetOp &a) const> note implemented for the '%s' interface",(const char *)getType()); 00241 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00242 return (IObjetOp *)this; 00243 } |
|
|
Some where Run method define the process of the agen. Implements NLAIAGENT::IObjectIA. Definition at line 275 of file fuzzyvar.cpp.
00276 {
00277 return IObjectIA::ProcessRun;
00278 }
|
|
The methode runMethodeMember(sint32 heritance, sint32 index, IObjectIA *param) allow us to run a member method. heritance: is the id returned by the methodisClassInheritedFrom(const IVarName &). index: is the method id return by the isMember(const IVarName *,const IVarName *,const IObjectIA &) const method. param: is the parametre for the method. Reimplemented from NLAIAGENT::IObjectIA. Definition at line 352 of file fuzzyvar.cpp. References params, runMethodeMember(), and sint32.
00353 { 00354 return runMethodeMember(id,params); 00355 } |
|
The methode runMethodeMember(sint32 index,IObjectIA *param) allow us to run a own member method. index: is the method id return by the isMember(const IVarName *,const IVarName *,const IObjectIA &) const method. param: is the parametre for the method. Reimplemented from NLAILOGIC::IBaseVar. Definition at line 307 of file fuzzyvar.cpp. References addSet(), getDebugString(), NLAILOGIC::IBaseVar::getName(), params, r, sint32, unfuzify(), and x. Referenced by runMethodeMember().
00308 { 00309 if ( id <= IBaseVar::getMethodIndexSize() ) 00310 return IBaseVar::runMethodeMember(id, params); 00311 00312 IObjectIA::CProcessResult r; 00313 00314 std::string buf; 00315 NLAIAGENT::IObjetOp *x= NULL; 00316 if ( ( (NLAIAGENT::IBaseGroupType *) params)->size() ) 00317 { 00318 ( ((NLAIAGENT::IBaseGroupType *)params))->popFront(); 00319 00320 #ifdef NL_DEBUG 00321 x->getDebugString(buf); 00322 #endif 00323 } 00324 #ifdef NL_DEBUG 00325 getDebugString(buf); 00326 #endif 00327 00328 sint32 base = IBaseVar::getMethodIndexSize(); 00329 sint32 op_add_subset = base+1; 00330 sint32 op_unfuzify = base+2; 00331 00332 if ( id == op_add_subset ) 00333 { 00334 addSet( (IFuzzySet *) x, ((IFuzzySet *)x)->getName()); 00335 r.ResultState = NLAIAGENT::processIdle; 00336 r.Result = NULL; 00337 } 00338 00339 00340 if ( id == op_unfuzify ) 00341 { 00342 unfuzify(); 00343 IObjectIA::CProcessResult r; 00344 r.ResultState = NLAIAGENT::processIdle; 00345 r.Result = new NLAIAGENT::DigitalType( (float) _Value); 00346 } 00347 00348 // TODO: throw exception.... 00349 return r; 00350 } |
|
Some where Run method define the process of the agen. Reimplemented in NLAIAGENT::IAgent, and NLAIAGENT::CAgentScript. Definition at line 163 of file baseai.cpp. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild(). Referenced by NLAIAGENT::IAgent::runChildrenStepByStep().
00164 { 00165 std::string text; 00166 text = NLAIC::stringGetBuild("const CProcessResult &IObjectIA::runStep() note implementaited for the '%s' interface",(const char *)getType()); 00167 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00168 return IObjectIA::ProcessNotComplit; 00169 } |
|
Save the class in a stream. Implements NLAIC::IBasicInterface. Definition at line 187 of file fuzzyvar.cpp. References _sets, NLMISC::IStream::serial(), sint32, and size.
|
|
This method allow to send a message to an compoment given by an string IVarName. Reimplemented in NLAIAGENT::CProxyAgentMail, NLAIAGENT::CAgentScript, and NLAIAGENT::IMessageBase. Definition at line 334 of file baseai.cpp. References NLAIAGENT::IVarName::getString(), NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00335 { 00336 std::string text; 00337 text = NLAIC::stringGetBuild("method 'sendMessage(%s,const IObjectIA &)' '%s' interface",name.getString(), (const char *)getType()); 00338 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00339 return CProcessResult(); 00340 } |
|
The method sendMessage(const IObjectIA &msg) allow us to achive a message defined in msg. Reimplemented in NLAIAGENT::CActorScript, NLAIAGENT::CLocalAgentMail, NLAIAGENT::CProxyAgentMail, NLAIAGENT::CAgentScript, NLAIAGENT::CAgentTimerHandle, NLAIAGENT::IConnectIA, NLAIAGENT::IListManager, NLAIAGENT::CMainAgentScript, and NLAIAGENT::IMessageBase. Definition at line 342 of file baseai.cpp. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild(). Referenced by NLAIAGENT::IObjectIA::runMethodeMember(), NLAIAGENT::CAgentScript::sendBroadCast(), NLAIAGENT::IMessageBase::sendMessage(), NLAIAGENT::IListManager::sendMessage(), and NLAIAGENT::CAgentScript::sendMessage().
00343 { 00344 std::string text; 00345 text = NLAIC::stringGetBuild("method 'sendMessage(const IObjectIA &)' '%s' interface", (const char *)getType()); 00346 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00347 return CProcessResult(); 00348 } |
|
Reimplemented from NLAIC::IPointerGestion. Definition at line 328 of file abstract_interface.h. References NLAIC::IBasicInterface::load(), and NLAIC::IBasicInterface::save().
|
|
Definition at line 98 of file var.cpp. References NLAIC::IBasicType::clone(), and NLAIC::IPointerGestion::release().
|
|
to cahnge a given components given by a string. Reimplemented in NLAIAGENT::CLocalAgentMail, NLAIAGENT::CAgentScript, NLAIAGENT::CMessageScript, and NLAISCRIPT::CAgentClass. Definition at line 198 of file baseai.cpp. References NLAIC::IBasicType::getType(), sint32, and NLAIC::stringGetBuild().
00199 { 00200 std::string text; 00201 text = NLAIC::stringGetBuild("Function void IObjectIA::setStaticMember(sint32,IObjectIA *) note implementaited for the '%s' interface",(const char *)getType()); 00202 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00203 return false; 00204 } |
|
to cahnge a given components given by an index. Definition at line 268 of file baseai.h. References NLAIAGENT::IObjectIA::getStaticMemberIndex(). Referenced by NLAISCRIPT::CAffHeapMemberiOpCode::runOpCode(), NLAISCRIPT::CAffMemberiOpCode::runOpCode(), and NLAIAGENT::CLocalAgentMail::setStaticMember().
00269 { 00270 return setStaticMember(getStaticMemberIndex(compName),change); 00271 } |
|
Definition at line 164 of file fuzzyvar.cpp. References value.
|
|
Implements NLAILOGIC::IBaseVar. Definition at line 159 of file fuzzyvar.cpp.
00160 { 00161 _Value = ((NLAIAGENT::INombre<double> *)obj)->getValue(); 00162 } |
|
Definition at line 109 of file fuzzyvar.cpp. Referenced by runMethodeMember().
00110 { 00111 double total_membership = 0.0; 00112 double set_membership; 00113 double set_center; 00114 00115 _Value = 0.0; 00116 for( sint32 i = 0; i < (sint32) _sets.size() ; i++ ) 00117 { 00118 set_membership = _sets[i]->agregate(); 00119 if ( set_membership ) 00120 { 00121 set_center = _sets[i]->center(); 00122 _Value = _Value + set_membership * set_center; 00123 total_membership = total_membership + set_membership; 00124 } 00125 } 00126 00127 if ( total_membership > 0 ) 00128 _Value = _Value / total_membership; 00129 else 00130 _Value = 0; 00131 00132 return _Value; 00133 } |
|
Implements NLAILOGIC::IBaseVar. Definition at line 265 of file fuzzyvar.cpp.
00266 { 00267 return false; 00268 } |
|
Implements NLAILOGIC::IBaseVar. Definition at line 260 of file fuzzyvar.cpp.
00261 { 00262 return false; 00263 } |
|
Definition at line 46 of file fuzzyvar.h. Referenced by addFact(), and ~CFuzzyVar(). |
|
Definition at line 42 of file fuzzyvar.h. Referenced by CFuzzyVar(). |
|
Definition at line 41 of file fuzzyvar.h. Referenced by CFuzzyVar(). |
|
Reimplemented from NLAILOGIC::IBaseVar. Definition at line 43 of file fuzzyvar.h. |
|
Definition at line 45 of file fuzzyvar.h. Referenced by addSet(), and ~CFuzzyVar(). |
|
Definition at line 44 of file fuzzyvar.h. Referenced by addSet(), fuzzify(), getDebugString(), getSet(), load(), save(), unfuzify(), and ~CFuzzyVar(). |
|
Definition at line 40 of file fuzzyvar.h. Referenced by CFuzzyVar(), and isEqual(). |
|
Initial value: NLAIC::CIdentType("FuzzyVar",NLAIC::CSelfClassFactory( CFuzzyVar(CStringVarName("Inst"),0,0) ), NLAIC::CTypeOfObject::tLogic | NLAIC::CTypeOfObject::tNombre, NLAIC::CTypeOfOperator::opAdd | NLAIC::CTypeOfOperator::opSub | NLAIC::CTypeOfOperator::opMul | NLAIC::CTypeOfOperator::opEq | NLAIC::CTypeOfOperator::opNot ) Definition at line 474 of file static_def_init.cpp. Referenced by getType(). |
|
Define the an buzzy state for an agent all time in this state. Definition at line 147 of file baseai.cpp. |
|
Define the an end state for an agent all time in this state. Definition at line 148 of file baseai.cpp. |
|
Define the an error state for an agent all time in this state. Definition at line 149 of file baseai.cpp. |
|
Define the an idle state for an agent all time in this state. Definition at line 145 of file baseai.cpp. |
|
Define the an locked state for an agent all time in this state. Definition at line 146 of file baseai.cpp. |
|
Definition at line 144 of file baseai.cpp. |
|
Definition at line 143 of file baseai.cpp. |