tbabm93 / AuctionAlgorithmCPP

Bertsekas Auction Algorithm Implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Auction Algorithm CPP

This is a repo contains a C++ implementation of Bertsekas's Auction Algorithm. The algorithm solves the problem of optimally assigning N objects to N people given the preferences specified in a given cost matrix.

On my machine the code could solve a size 500 assignment problem in ~.03 seconds. I compiled the code using the command g++-5 ./auction.cpp -Ofast -std=c++14 -o auction.

About

Bertsekas Auction Algorithm Implementation


Languages

Language:C++ 100.0%