libqalculate-5.0.0
Public Member Functions | Protected Attributes | List of all members
UnknownVariable Class Reference

A variable with unknown value. More...

#include <Variable.h>

Inheritance diagram for UnknownVariable:
Variable ExpressionItem

Public Member Functions

 UnknownVariable (std::string cat_, std::string name_, std::string title_="", bool is_local=true, bool is_builtin=false, bool is_active=true)
 
 UnknownVariable ()
 
 UnknownVariable (const UnknownVariable *variable)
 
virtual ExpressionItemcopy () const
 
virtual void set (const ExpressionItem *item)
 
bool isKnown () const
 
void setAssumptions (Assumptions *ass)
 
void setAssumptions (const MathStructure &mvar)
 
Assumptionsassumptions ()
 
const MathStructureinterval () const
 
void setInterval (const MathStructure &o)
 
virtual int subtype () const
 
virtual bool representsPositive (bool=false)
 
virtual bool representsNegative (bool=false)
 
virtual bool representsNonNegative (bool=false)
 
virtual bool representsNonPositive (bool=false)
 
virtual bool representsInteger (bool=false)
 
virtual bool representsNumber (bool=false)
 
virtual bool representsRational (bool=false)
 
virtual bool representsReal (bool=false)
 
virtual bool representsNonComplex (bool=false)
 
virtual bool representsComplex (bool=false)
 
virtual bool representsNonZero (bool=false)
 
virtual bool representsBoolean ()
 
virtual bool representsNonMatrix ()
 
virtual bool representsScalar ()
 
- Public Member Functions inherited from Variable
 Variable (std::string cat_, std::string name_, std::string title_="", bool is_local=true, bool is_builtin=false, bool is_active=true)
 
 Variable (const Variable *variable)
 
virtual int type () const
 
virtual bool representsNonInteger (bool=false)
 
virtual bool representsFraction (bool=false)
 
virtual bool representsEven (bool=false)
 
virtual bool representsOdd (bool=false)
 
virtual bool representsUndefined (bool=false, bool=false, bool=false)
 
virtual int id () const
 
- Public Member Functions inherited from ExpressionItem
 ExpressionItem (std::string cat_, std::string name_, std::string title_="", std::string descr_="", bool is_local=true, bool is_builtin=false, bool is_active=true)
 
virtual bool destroy ()
 
bool isRegistered () const
 
void setRegistered (bool is_registered)
 For internal use.
 
virtual const std::string & name (bool use_unicode=false, bool(*can_display_unicode_string_function)(const char *, void *)=NULL, void *can_display_unicode_string_arg=NULL) const
 
virtual const std::string & referenceName () const
 
virtual const ExpressionNamepreferredName (bool abbreviation=false, bool use_unicode=false, bool plural=false, bool reference=false, bool(*can_display_unicode_string_function)(const char *, void *)=NULL, void *can_display_unicode_string_arg=NULL) const
 
virtual const ExpressionNamepreferredInputName (bool abbreviation=false, bool use_unicode=false, bool plural=false, bool reference=false, bool(*can_display_unicode_string_function)(const char *, void *)=NULL, void *can_display_unicode_string_arg=NULL) const
 
virtual const ExpressionNamepreferredDisplayName (bool abbreviation=false, bool use_unicode=false, bool plural=false, bool reference=false, bool(*can_display_unicode_string_function)(const char *, void *)=NULL, void *can_display_unicode_string_arg=NULL) const
 
virtual const ExpressionNamegetName (size_t index) const
 
virtual void setName (const ExpressionName &ename, size_t index=1, bool force=true)
 
virtual void setName (std::string sname, size_t index, bool force=true)
 
virtual void addName (const ExpressionName &ename, size_t index=0, bool force=true)
 
virtual void addName (std::string sname, size_t index=0, bool force=true)
 
virtual size_t countNames () const
 
virtual void clearNames ()
 
virtual void clearNonReferenceNames ()
 
virtual void removeName (size_t index)
 
virtual size_t hasName (const std::string &sname, bool case_sensitive=true) const
 
virtual size_t hasNameCaseSensitive (const std::string &sname) const
 
virtual const ExpressionNamefindName (int abbreviation=-1, int use_unicode=-1, int plural=-1, bool(*can_display_unicode_string_function)(const char *, void *)=NULL, void *can_display_unicode_string_arg=NULL) const
 
virtual const std::string & title (bool return_name_if_no_title=true, bool use_unicode=false, bool(*can_display_unicode_string_function)(const char *, void *)=NULL, void *can_display_unicode_string_arg=NULL) const
 
virtual void setTitle (std::string title_)
 
virtual const std::string & description () const
 
virtual void setDescription (std::string descr_)
 
virtual const std::string & category () const
 
virtual void setCategory (std::string cat_)
 
virtual bool hasChanged () const
 
virtual void setChanged (bool has_changed)
 
virtual bool isLocal () const
 
virtual bool setLocal (bool is_local=true, int will_be_active=-1)
 
virtual bool isBuiltin () const
 
virtual bool isApproximate () const
 
virtual void setApproximate (bool is_approx=true)
 
virtual int precision () const
 
virtual void setPrecision (int prec)
 
virtual bool isActive () const
 
virtual void setActive (bool is_active)
 
virtual bool isHidden () const
 
virtual void setHidden (bool is_hidden)
 
virtual int refcount () const
 
virtual void ref ()
 
virtual void unref ()
 
virtual void ref (ExpressionItem *o)
 
virtual void unref (ExpressionItem *o)
 
virtual ExpressionItemgetReferencer (size_t index=1) const
 
virtual bool changeReference (ExpressionItem *o_from, ExpressionItem *o_to)
 

Protected Attributes

Assumptionso_assumption
 
MathStructuremstruct
 
- Protected Attributes inherited from ExpressionItem
std::string scat
 
std::string stitle
 
std::string sdescr
 
bool b_local
 
bool b_changed
 
bool b_builtin
 
bool b_approx
 
bool b_active
 
bool b_registered
 
bool b_hidden
 
bool b_destroyed
 
int i_ref
 
int i_precision
 
std::vector< ExpressionItem * > v_refs
 
std::vector< ExpressionNamenames
 

Detailed Description

A variable with unknown value.

Unknown variables have an associated assumption object.

Constructor & Destructor Documentation

◆ UnknownVariable() [1/3]

UnknownVariable::UnknownVariable ( std::string cat_,
std::string name_,
std::string title_ = "",
bool is_local = true,
bool is_builtin = false,
bool is_active = true )

Create an unknown.

Parameters
cat_Category that the variable belongs to.
name_Initial name of the variable.
title_Descriptive name.
is_localIf the variable is local/user-defined or global.
is_builtinIf the variable is builtin and not modifiable.
is_activeIf the variable is active and can be used in expressions.

◆ UnknownVariable() [2/3]

UnknownVariable::UnknownVariable ( )

Create an empty unknown variable.

◆ UnknownVariable() [3/3]

UnknownVariable::UnknownVariable ( const UnknownVariable * variable)

Create a copy of an unknown variable.

Parameters
variableUnknown variable to copy.

Member Function Documentation

◆ assumptions()

Assumptions * UnknownVariable::assumptions ( )

Returns the assumptions of the unknown variable.

Returns
Assumptions of the unknown variable.

◆ copy()

virtual ExpressionItem * UnknownVariable::copy ( ) const
virtual

Implements Variable.

◆ isKnown()

bool UnknownVariable::isKnown ( ) const
inlinevirtual

Returns if the variable has a known value (as opposed to assumptions).

Returns
true if the variable is of class KnownVariable, false if UnknownVariable.

Implements Variable.

◆ representsBoolean()

virtual bool UnknownVariable::representsBoolean ( )
virtual

Reimplemented from Variable.

◆ representsComplex()

virtual bool UnknownVariable::representsComplex ( bool = false)
virtual

Reimplemented from Variable.

◆ representsInteger()

virtual bool UnknownVariable::representsInteger ( bool = false)
virtual

Reimplemented from Variable.

◆ representsNegative()

virtual bool UnknownVariable::representsNegative ( bool = false)
virtual

Reimplemented from Variable.

◆ representsNonComplex()

virtual bool UnknownVariable::representsNonComplex ( bool = false)
virtual

Reimplemented from Variable.

◆ representsNonMatrix()

virtual bool UnknownVariable::representsNonMatrix ( )
virtual

Reimplemented from Variable.

◆ representsNonNegative()

virtual bool UnknownVariable::representsNonNegative ( bool = false)
virtual

Reimplemented from Variable.

◆ representsNonPositive()

virtual bool UnknownVariable::representsNonPositive ( bool = false)
virtual

Reimplemented from Variable.

◆ representsNonZero()

virtual bool UnknownVariable::representsNonZero ( bool = false)
virtual

Reimplemented from Variable.

◆ representsNumber()

virtual bool UnknownVariable::representsNumber ( bool = false)
virtual

Reimplemented from Variable.

◆ representsPositive()

virtual bool UnknownVariable::representsPositive ( bool = false)
virtual

Returns if the variable represents a positive value.

Reimplemented from Variable.

◆ representsRational()

virtual bool UnknownVariable::representsRational ( bool = false)
virtual

Reimplemented from Variable.

◆ representsReal()

virtual bool UnknownVariable::representsReal ( bool = false)
virtual

Reimplemented from Variable.

◆ representsScalar()

virtual bool UnknownVariable::representsScalar ( )
virtual

Reimplemented from Variable.

◆ set()

virtual void UnknownVariable::set ( const ExpressionItem * item)
virtual

Reimplemented from Variable.

◆ setAssumptions()

void UnknownVariable::setAssumptions ( Assumptions * ass)

Sets the assumptions of the unknown variable.

Parameters
assAssumptions.

◆ subtype()

virtual int UnknownVariable::subtype ( ) const
inlinevirtual

Returns the subtype of the variable, corresponding to which subsubclass the object belongs to.

Returns
VariableSubtype.

Reimplemented from Variable.

References SUBTYPE_UNKNOWN_VARIABLE.


The documentation for this class was generated from the following file: