MurtyAlgorithm icon indicating copy to clipboard operation
MurtyAlgorithm copied to clipboard

How can I change "solver modes for association problem" to MINIMIZATION?

Open JohnPekl opened this issue 3 years ago • 0 comments

I have found one Fork repository (from your code) that does minimization.

https://github.com/jonatanolofsson/MurtyAlgorithm

Is it correct to follow?

WeightMatrix a = w;
if (MODE == MINIMIZATION) {
  a = WeightMatrix::Ones(a.rows(), a.cols()) * __AUCTION_INF - a;
}

JohnPekl avatar Jul 06 '22 09:07 JohnPekl