예제 #1
0
void hungarian_print_costmatrix(hungarian_problem_t* p) {
     hungarian_print_matrix(p->cost, p->num_rows, p->num_cols) ;
}
예제 #2
0
void Hungarian::print_cost() {
  hungarian_print_matrix(m_costmatrix, m_rows, m_cols) ;
}
예제 #3
0
void hungarian_print_assignment(hungarian_problem_t* p) {
     hungarian_print_matrix(p->assignment, p->num_rows, p->num_cols) ;
}
예제 #4
0
void Hungarian::print_assignment() {
  hungarian_print_matrix(m_assignment, m_rows, m_cols) ;
}