Given how we are using this exclusion list, it makes more sense for it

to be a set. Not that speed will really be an issue here, but....


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38178 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-03-31 13:03:29 +00:00
parent 1d255a8da5
commit 4685a3e5a8
5 changed files with 15 additions and 15 deletions

View File

@ -3712,10 +3712,10 @@ bool Buffer::isExportable(string const & format) const
vector<Format const *> Buffer::exportableFormats(bool only_viewable) const
{
vector<string> const backs = backends();
vector<string> excludes;
set<string> excludes;
if (params().useNonTeXFonts) {
excludes.push_back("latex");
excludes.push_back("pdflatex");
excludes.insert("latex");
excludes.insert("pdflatex");
}
vector<Format const *> result =
theConverters().getReachable(backs[0], only_viewable, true, excludes);

View File

@ -691,16 +691,14 @@ Converters::getReachableTo(string const & target, bool const clear_visited)
vector<Format const *> const
Converters::getReachable(string const & from, bool const only_viewable,
bool const clear_visited, vector<string> const & excludes)
bool const clear_visited, set<string> const & excludes)
{
vector<int> excluded_numbers(excludes.size());
set<int> excluded_numbers;;
vector<string>::const_iterator sit = excludes.begin();
vector<string>::const_iterator const end = excludes.end();
vector<int>::iterator it = excluded_numbers.begin();
for ( ; sit != end; ++sit, ++it) {
*it = formats.getNumber(*sit);
}
set<string>::const_iterator sit = excludes.begin();
set<string>::const_iterator const end = excludes.end();
for (; sit != end; ++sit)
excluded_numbers.insert(formats.getNumber(*sit));
vector<int> const & reachables =
G_.getReachable(formats.getNumber(from),

View File

@ -16,6 +16,7 @@
#include "OutputParams.h"
#include <vector>
#include <set>
#include <string>
@ -101,7 +102,7 @@ public:
std::vector<Format const *> const
getReachable(std::string const & from, bool only_viewable,
bool clear_visited,
std::vector<std::string> const & excludes = std::vector<std::string>());
std::set<std::string> const & excludes = std::set<std::string>());
std::vector<Format const *> importableFormats();
std::vector<Format const *> exportableFormats(bool only_viewable);

View File

@ -83,7 +83,7 @@ Graph::EdgePath const
Graph::EdgePath const
Graph::getReachable(int from, bool only_viewable,
bool clear_visited, vector<int> excludes)
bool clear_visited, set<int> excludes)
{
EdgePath result;
queue<int> Q;
@ -111,7 +111,7 @@ Graph::EdgePath const
int const cv = (*cit)->to;
if (!vertices_[cv].visited) {
vertices_[cv].visited = true;
if (find(excludes.begin(), excludes.end(), cv) == excludes.end())
if (excludes.find(cv) == excludes.end())
Q.push(cv);
}
}

View File

@ -16,6 +16,7 @@
#include <list>
#include <queue>
#include <set>
#include <vector>
@ -33,7 +34,7 @@ public:
EdgePath const getReachableTo(int to, bool clear_visited);
/// \return a vector of the reachable vertices, avoiding all "excludes"
EdgePath const getReachable(int from, bool only_viewable,
bool clear_visited, std::vector<int> excludes = std::vector<int>());
bool clear_visited, std::set<int> excludes = std::set<int>());
/// can "from" be reached from "to"?
bool isReachable(int from, int to);
/// find a path from "from" to "to". always returns one of the