Skip to content

Commit

Permalink
set cover during search.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas.hammerl committed Jan 24, 2009
1 parent 05645e8 commit 468caf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acotreewidth/trunk/include/acotreewidth/decomp.h
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ template <class T> class HyperTreeDecompProblem : public DecompProblem<T> {
return edges;
}

/*std::map<unsigned int,double> get_feasible_start_vertices() {
std::map<unsigned int,double> get_feasible_start_vertices() {
std::map<unsigned int,double> vertices;
for(unsigned int i=0;i<DecompProblem<T>::graph_->number_of_vertices();i++) {
std::vector<unsigned int> clique = DecompProblem<T>::graph_->get_neighbours(i);
Expand All @@ -404,7 +404,7 @@ template <class T> class HyperTreeDecompProblem : public DecompProblem<T> {
}
}
return vertices;
}*/
}
};

class FileNotFoundException : public std::exception {
Expand Down

0 comments on commit 468caf2

Please sign in to comment.