Commit 808ca104 authored by Davis King's avatar Davis King

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

parent b1af808d
...@@ -491,7 +491,7 @@ namespace ...@@ -491,7 +491,7 @@ namespace
template < template <
typename map_problem typename map_problem
> >
void find_max_factor_graph_brute_force ( void brute_force_find_max_factor_graph_nmplp (
const map_problem& prob, const map_problem& prob,
std::vector<unsigned long>& map_assignment std::vector<unsigned long>& map_assignment
) )
...@@ -534,7 +534,7 @@ namespace ...@@ -534,7 +534,7 @@ namespace
const double score1 = find_total_score(prob, map_assignment1); 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); const double score2 = find_total_score(prob, map_assignment2);
dlog << LINFO << "score NMPLP: " << score1; dlog << LINFO << "score NMPLP: " << score1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment