Constructors
Declared in <cluster_linearize.h>
Construct a SetInfo for the empty set.
SetInfo() noexcept = default;
» more...
Construct a SetInfo for a specified set and feerate.
SetInfo(
SetType const& txn,
FeeFrac const& fr) noexcept;
» more...
Construct a SetInfo for a given transaction in a depgraph.
explicit
SetInfo(
DepGraph<SetType> const& depgraph,
DepGraphIndex pos) noexcept;
» more...
Construct a SetInfo for a set of transactions in a depgraph.
explicit
SetInfo(
DepGraph<SetType> const& depgraph,
SetType const& txn) noexcept;
» more...
| Name | Description |
|---|---|
| txn | The transactions in the set. |
| fr | Their combined fee and size. |
| depgraph | The graph the transaction belongs to. |
| pos | The position of the single transaction. |