Go to the previous, next section.
#include <FuzzyLib/FClause.h>
Fl_FCLAUSE
FlObject
None
A FlFClause is basically a structure containing a fuzzy variable
/ fuzzy value pair. The members
FlFVar *var; // Linguistic variable FlFSet *value; // Linguistic valueare public accessible.
Constructors:
FlFClause();
FlFClause(FlParam *param);
FlFClause(FlFVar *xvar, FlFSet *xset);
FlFClause(FlFVar &xvar, FlFSet &xset);
FlFVar and a FlFSet to a FlFClause.
In addition to the member functions required by FuzzyLib, FlFClause
provides:
void print_clause(ostream &strm, bool lhs) const;
&strm.
Go to the previous, next section.