General AllDiff constraint.
Returns 1 if values for all keys are different, 0 otherwise.
|
|
| AllDiff (const DiscreteKeys &dkeys) |
| | Construct from keys.
|
| void | print (const std::string &s="", const KeyFormatter &formatter=DefaultKeyFormatter) const override |
| | print
|
| bool | equals (const DiscreteFactor &other, double tol) const override |
| | equals
|
| double | operator() (const DiscreteValues &values) const override |
| | Calculate value = expensive !
|
| DecisionTreeFactor | toDecisionTreeFactor () const override |
| | Convert into a decisiontree, can be very expensive !
|
| DecisionTreeFactor | operator* (const DecisionTreeFactor &f) const override |
| | Multiply into a decisiontree.
|
| bool | ensureArcConsistency (Key j, Domains *domains) const override |
| Constraint::shared_ptr | partiallyApply (const DiscreteValues &) const override |
| | Partially apply known values.
|
| Constraint::shared_ptr | partiallyApply (const Domains &) const override |
| | Partially apply known values, domain version.
|
|
| Constraint () |
| | Default constructor for I/O.
|
|
| ~Constraint () override |
| | Virtual destructor.
|
| std::string | markdown (const KeyFormatter &keyFormatter=DefaultKeyFormatter, const Names &names={}) const override |
| | Render as markdown table.
|
| std::string | html (const KeyFormatter &keyFormatter=DefaultKeyFormatter, const Names &names={}) const override |
| | Render as html table.
|
|
| DiscreteFactor () |
| | Default constructor creates empty factor.
|
| template<typename CONTAINER> |
| | DiscreteFactor (const CONTAINER &keys) |
| | Construct from container of keys.
|
|
virtual | ~DiscreteFactor () |
| | Virtual destructor.
|
| void | print (const std::string &s="DiscreteFactor\n", const KeyFormatter &formatter=DefaultKeyFormatter) const override |
| | print
|
|
double | error (const DiscreteValues &values) const |
| | Error is just -log(value).
|
| double | error (const HybridValues &c) const override |
| | All factor types need to implement an error function.
|
|
virtual | ~Factor ()=default |
| | Default destructor.
|
|
bool | empty () const |
| | Whether the factor is empty (involves zero variables).
|
|
Key | front () const |
| | First key.
|
|
Key | back () const |
| | Last key.
|
|
const_iterator | find (Key key) const |
| | find
|
|
const KeyVector & | keys () const |
| | Access the factor's involved variable keys.
|
|
const_iterator | begin () const |
| | Iterator at beginning of involved variable keys.
|
|
const_iterator | end () const |
| | Iterator at end of involved variable keys.
|
| size_t | size () const |
| virtual void | printKeys (const std::string &s="Factor", const KeyFormatter &formatter=DefaultKeyFormatter) const |
| | print only keys
|
|
bool | equals (const This &other, double tol=1e-9) const |
| | check equality
|
| KeyVector & | keys () |
|
iterator | begin () |
| | Iterator at beginning of involved variable keys.
|
|
iterator | end () |
| | Iterator at end of involved variable keys.
|
|
|
typedef boost::shared_ptr< Constraint > | shared_ptr |
|
typedef DiscreteFactor | This |
| | This class.
|
|
typedef boost::shared_ptr< DiscreteFactor > | shared_ptr |
| | shared_ptr to this class
|
|
typedef Factor | Base |
| | Our base class.
|
|
using | Values = DiscreteValues |
| | backwards compatibility
|
|
using | Names = DiscreteValues::Names |
| | Translation table from values to strings.
|
|
typedef KeyVector::iterator | iterator |
| | Iterator over keys.
|
|
typedef KeyVector::const_iterator | const_iterator |
| | Const iterator over keys.
|
|
| Constraint (Key j) |
| | Construct unary constraint factor.
|
|
| Constraint (Key j1, Key j2) |
| | Construct binary constraint factor.
|
|
| Constraint (const KeyVector &js) |
| | Construct n-way constraint factor.
|
|
template<class KeyIterator> |
| | Constraint (KeyIterator beginKey, KeyIterator endKey) |
| | construct from container
|
|
| Factor () |
| | Default constructor for I/O.
|
| template<typename CONTAINER> |
| | Factor (const CONTAINER &keys) |
| | Construct factor from container of keys.
|
| template<typename ITERATOR> |
| | Factor (ITERATOR first, ITERATOR last) |
| | Construct factor from iterator keys.
|
| template<typename CONTAINER> |
| static Factor | FromKeys (const CONTAINER &keys) |
| | Construct factor from container of keys.
|
| template<typename ITERATOR> |
| static Factor | FromIterators (ITERATOR first, ITERATOR last) |
| | Construct factor from iterator keys.
|
|
KeyVector | keys_ |
| | The keys involved in this factor.
|