Renamed a function so auto complete in Vim works more conveniently.

This commit is contained in:
Davis King 2011-09-18 08:48:32 -04:00
parent b1af808d01
commit 808ca1041b
1 changed files with 2 additions and 2 deletions

View File

@ -491,7 +491,7 @@ namespace
template <
typename map_problem
>
void find_max_factor_graph_brute_force (
void brute_force_find_max_factor_graph_nmplp (
const map_problem& prob,
std::vector<unsigned long>& map_assignment
)
@ -534,7 +534,7 @@ namespace
const double score1 = find_total_score(prob, map_assignment1);
find_max_factor_graph_brute_force(prob, map_assignment2);
brute_force_find_max_factor_graph_nmplp(prob, map_assignment2);
const double score2 = find_total_score(prob, map_assignment2);
dlog << LINFO << "score NMPLP: " << score1;