MCPcopy Create free account
hub / github.com/cp-algorithms/cp-algorithms / main

Function main

test/test_hungarian.cpp:6–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5
6int main(){
7 int n=5,m=5;
8 int INF=100;
9 int A[][6]={
10 0, 0, 0, 0, 0, 0,
11 0, 9, 5, 5, 6, 5,
12 0, 1, 9, 4, 7, 3,
13 0, 1, 2, 7, 4, 9,
14 0, 8, 1, 4, 4, 4,
15 0, 1, 6, 4, 9, 4
16 };
17 #include "hungarian.h"
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected