|
std::string | base1Str () const |
|
std::optional< Domain > | checkAllDiff (const KeyVector keys, const Domains &domains) const |
|
bool | contains (size_t value) const |
|
DiscreteKey | discreteKey () const |
|
| Domain (const DiscreteKey &dkey) |
|
| Domain (const DiscreteKey &dkey, size_t v) |
|
bool | ensureArcConsistency (Key j, Domains *domains) const override |
|
bool | equals (const DiscreteFactor &other, double tol) const override |
| equals More...
|
|
void | erase (size_t value) |
| Erase a value, non const :-(. More...
|
|
AlgebraicDecisionTree< Key > | errorTree () const override |
| Compute error for each assignment and return as a tree. More...
|
|
double | evaluate (const Assignment< Key > &values) const override |
| Calculate value. More...
|
|
size_t | firstValue () const |
|
void | insert (size_t value) |
| Insert a value, non const :-(. More...
|
|
bool | isSingleton () const |
|
Key | key () const |
| The one key. More...
|
|
uint64_t | nrValues () const override |
| Get the number of non-zero values contained in this factor. More...
|
|
DecisionTreeFactor | operator* (const DecisionTreeFactor &f) const override |
| Multiply into a decisiontree. More...
|
|
Constraint::shared_ptr | partiallyApply (const DiscreteValues &values) const override |
| Partially apply known values. More...
|
|
Constraint::shared_ptr | partiallyApply (const Domains &domains) const override |
| Partially apply known values, domain version. More...
|
|
void | print (const std::string &s="", const KeyFormatter &formatter=DefaultKeyFormatter) const override |
| print More...
|
|
DecisionTreeFactor | toDecisionTreeFactor () const override |
| Convert into a decisiontree. More...
|
|
| Constraint () |
| Default constructor for I/O. More...
|
|
| ~Constraint () override |
| Virtual destructor. More...
|
|
DiscreteFactor::shared_ptr | multiply (const DiscreteFactor::shared_ptr &df) const override |
| Multiply factors, DiscreteFactor::shared_ptr edition. More...
|
|
DiscreteFactor::shared_ptr | operator/ (const DiscreteFactor::shared_ptr &df) const override |
| divide by DiscreteFactor::shared_ptr f (safely) More...
|
|
DiscreteFactor::shared_ptr | sum (size_t nrFrontals) const override |
| Create new factor by summing all values with the same separator values. More...
|
|
DiscreteFactor::shared_ptr | sum (const Ordering &keys) const override |
| Create new factor by summing all values with the same separator values. More...
|
|
DiscreteFactor::shared_ptr | max (size_t nrFrontals) const override |
| Create new factor by maximizing over all values with the same separator. More...
|
|
DiscreteFactor::shared_ptr | max (const Ordering &keys) const override |
| Create new factor by maximizing over all values with the same separator. More...
|
|
std::string | markdown (const KeyFormatter &keyFormatter=DefaultKeyFormatter, const Names &names={}) const override |
| Render as markdown table. More...
|
|
std::string | html (const KeyFormatter &keyFormatter=DefaultKeyFormatter, const Names &names={}) const override |
| Render as html table. More...
|
|
| DiscreteFactor () |
|
template<typename CONTAINER > |
| DiscreteFactor (const CONTAINER &keys, const std::map< Key, size_t > cardinalities={}) |
|
DiscreteKeys | discreteKeys () const |
| Return all the discrete keys associated with this factor. More...
|
|
std::map< Key, size_t > | cardinalities () const |
|
size_t | cardinality (Key j) const |
|
double | operator() (const DiscreteValues &values) const |
| Find value for given assignment of values to variables. More...
|
|
virtual double | error (const DiscreteValues &values) const |
| Error is just -log(value) More...
|
|
double | error (const HybridValues &c) const override |
|
virtual | ~Factor ()=default |
| Default destructor. More...
|
|
bool | empty () const |
| Whether the factor is empty (involves zero variables). More...
|
|
Key | front () const |
| First key. More...
|
|
Key | back () const |
| Last key. More...
|
|
const_iterator | find (Key key) const |
| find More...
|
|
const KeyVector & | keys () const |
| Access the factor's involved variable keys. More...
|
|
const_iterator | begin () const |
|
const_iterator | end () const |
|
size_t | size () const |
|
virtual void | printKeys (const std::string &s="Factor", const KeyFormatter &formatter=DefaultKeyFormatter) const |
| print only keys More...
|
|
bool | equals (const This &other, double tol=1e-9) const |
| check equality More...
|
|
KeyVector & | keys () |
|
iterator | begin () |
|
iterator | end () |
|
The Domain class represents a constraint that restricts the possible values a particular variable, with given key, can take on.
Definition at line 20 of file Domain.h.