OEFuzzy

class OEFuzzy

This class represents OEFuzzy.

The OEFuzzy class represents fuzzy logic used in expression tests.

Constructors

OEFuzzy()

Default constructor.

OEFuzzy(const unsigned int v)

Construct an OEFuzzy object given with an integer value. The integer values should be one of the values give in the OEFuzzVal namespace. Three pre-defined global constant fuzzy values (OEChem::FzTrue, OEChem::FzFalse, and OEChem::FzMaybe) are define in OEChem which represent the fuzzy values of true, false, and maybe, respectively.

Default and copy constructors.

operator!

const OEFuzzy &operator!() const

Negation operator. Negation of true(OEChem::FzTrue) will return false(OEChem::FzFalse). Negation of false(OEChem::FzFalse) will return true(OEChem::FzTrue). Negation of maybe(OEChem::FzMaybe) will return maybe (OEChem::FzMaybe).

operator!=

bool operator!=(const OEFuzzy &) const

Not equal operator. Two OEFuzzy objects are not equivalent if their fuzzy logic values differ.

operator&&

const OEFuzzy &operator&&(const OEFuzzy &) const

And operator. Logic values for ‘’fuzzy and’’ is the following:

OEChem::FzFalse && OEChem::FzFalse

OEChem::FzFalse

OEChem::FzFalse && OEChem::FzMaybe

OEChem::FzFalse

OEChem::FzFalse && OEChem::FzTrue

OEChem::FzFalse

OEChem::FzMaybe && OEChem::FzFalse

OEChem::FzFalse

OEChem::FzMaybe && OEChem::FzMaybe

OEChem::FzMaybe

OEChem::FzMaybe && OEChem::FzTrue

OEChem::FzMaybe

OEChem::FzTrue && OEChem::FzFalse

OEChem::FzFalse

OEChem::FzTrue && OEChem::FzMaybe

OEChem::FzMaybe

OEChem::FzTrue && OEChem::FzTrue

OEChem::FzTrue

operator==

bool operator==(const OEFuzzy &) const

Equivalence operator. Two OEFuzzy objects are equivalent if their fuzzy logic values are identical.

operator||

const OEFuzzy &operator||(const OEFuzzy &) const

Or operator. Logic values for ‘’fuzzy or’’ is the following:

OEChem::FzFalse || OEChem::FzFalse

OEChem::FzFalse

OEChem::FzFalse || OEChem::FzMaybe

OEChem::FzMaybe

OEChem::FzFalse || OEChem::FzTrue

OEChem::FzTrue

OEChem::FzMaybe || OEChem::FzFalse

OEChem::FzMaybe

OEChem::FzMaybe || OEChem::FzMaybe

OEChem::FzMaybe

OEChem::FzMaybe || OEChem::FzTrue

OEChem::FzTrue

OEChem::FzTrue || OEChem::FzFalse

OEChem::FzTrue

OEChem::FzTrue || OEChem::FzMaybe

OEChem::FzTrue

OEChem::FzTrue || OEChem::FzTrue

OEChem::FzTrue

operator bool

operator bool() const

Boolean test operator. Both fuzzy true (OEChem::FzTrue) and maybe (OEChem::FzMaybe) values will return true. A fuzzy false(OEChem::FzFalse) value will return false.