assignment.Auction.__init__
def __init__(self, bid_size = 0.05, *args = (), **kwargs = {})Initialize the auction solver.
Parameters
| Name | Type | Description |
|---|---|---|
| bid_size = 0.05 | float | Auction bid step size. Tune to the dynamic range of the cost matrix; values that are large relative to typical cost gaps converge faster but produce coarser matches. |
| *args = () | Positional arguments forwarded to :class:`Assignment`. | |
| **kwargs = {} | Keyword arguments forwarded to :class:`Assignment`. |
Source: unitrack/assignment/_auction.py:30