C3D Toolkit
Kernel - 117982, Vision - 2.9.2.2
|
Node of interval expression tree. More...
#include <pars_equation_tree.h>
Public Member Functions | |
virtual TeIntervalNodeType | IsA () const =0 |
Get type of a tree node. | |
virtual TreeIntervalNode * | Duplicate () const =0 |
Get a copy of the object. | |
virtual EquTreeResCode | GetFirstValue (double &) const =0 |
Get the first variable. | |
virtual EquTreeResCode | GetSecondValue (double &) const =0 |
Get the second variable. | |
virtual void | GetString (c3d::string_t &) const =0 |
Get a string. | |
virtual c3d::BoolPair | SetValue (double f, double s, const std::set< ItIntervalTreeVariable * > &unfixedIVars, const std::set< ItTreeVariable * > &unfixedDVars)=0 |
Set value. More... | |
virtual void | ReplaceParVariable (const c3d::string_t &varName, ItTreeVariable &newVar)=0 |
Replace variables. More... | |
![]() | |
TapeBase (RegistrableRec regs=noRegistrable) | |
Constructor. | |
TapeBase (const TapeBase &) | |
Copy-constructor. | |
virtual | ~TapeBase () |
Destructor. | |
RegistrableRec | GetRegistrable () const |
Whether the stream class is registrable. | |
void | SetRegistrable (RegistrableRec regs=registrable) const |
Set the state of registration of the stream class. | |
virtual const char * | GetPureName (const VersionContainer &) const |
Get the class name. | |
virtual bool | IsFamilyRegistrable () const |
Whether the object belongs to a registrable family. | |
Node of interval expression tree.
Node of interval expression tree.
|
pure virtual |
Set value.
Try to set value [f;s] to a tree node.
[in] | f | - Lower bound of the interval. |
[in] | s | - Upper bound of the interval. |
[in] | unfixedIVars | - Set of interval variables, which can be changed. |
[in] | unfixedDVars | - Set of real variables, which can be changed. \access public |
Implemented in IntervalIdentNode, and IntervalConstNode.
|
pure virtual |
Replace variables.
Replace all variables with the specified name by a new variable.
[out] | varName | - Name. |
[out] | newVar | - New variable. |
Implemented in IntervalConstNode, and IntervalIdentNode.