Update to compile with the Intel compiler.
This commit is contained in:
parent
7998fff056
commit
1d58493be3
13 changed files with 87 additions and 53 deletions
|
|
@ -50,13 +50,13 @@ namespace spot
|
|||
for (steps::const_iterator i = run.prefix.begin();
|
||||
i != run.prefix.end(); ++i)
|
||||
{
|
||||
step s = { s.s->clone(), i->label, i->acc };
|
||||
step s = { i->s->clone(), i->label, i->acc };
|
||||
prefix.push_back(s);
|
||||
}
|
||||
for (steps::const_iterator i = run.cycle.begin();
|
||||
i != run.cycle.end(); ++i)
|
||||
{
|
||||
step s = { s.s->clone(), i->label, i->acc };
|
||||
step s = { i->s->clone(), i->label, i->acc };
|
||||
cycle.push_back(s);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,12 +62,6 @@ namespace spot
|
|||
return os;
|
||||
}
|
||||
|
||||
unsigned
|
||||
count() const
|
||||
{
|
||||
return sm.size();
|
||||
}
|
||||
|
||||
private:
|
||||
typedef std::map<bdd, unsigned, bdd_less_than> split_map;
|
||||
split_map sm;
|
||||
|
|
|
|||
|
|
@ -117,21 +117,6 @@ namespace spot
|
|||
return num;
|
||||
}
|
||||
|
||||
std::ostream&
|
||||
dump(std::ostream& os) const
|
||||
{
|
||||
fv_map::const_iterator fi;
|
||||
os << "Next Variables:" << std::endl;
|
||||
for (fi = next_map.begin(); fi != next_map.end(); ++fi)
|
||||
{
|
||||
os << " " << fi->second << ": Next[";
|
||||
fi->first->to_string(os) << "]" << std::endl;
|
||||
}
|
||||
os << "Shared Dict:" << std::endl;
|
||||
dict->dump(os);
|
||||
return os;
|
||||
}
|
||||
|
||||
formula*
|
||||
var_to_formula(int var) const
|
||||
{
|
||||
|
|
|
|||
|
|
@ -276,16 +276,16 @@ namespace spot
|
|||
|
||||
void
|
||||
parity_game_graph::process_state(const state* s,
|
||||
int ,
|
||||
tgba_succ_iterator*)
|
||||
int,
|
||||
tgba_succ_iterator*)
|
||||
{
|
||||
tgba_state_.push_back(s);
|
||||
}
|
||||
|
||||
void
|
||||
parity_game_graph::process_link(int ,
|
||||
int ,
|
||||
const tgba_succ_iterator*)
|
||||
parity_game_graph::process_link(int,
|
||||
int,
|
||||
const tgba_succ_iterator*)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -530,13 +530,6 @@ namespace spot
|
|||
&(ic->second.first), &(ic->second.second));
|
||||
}
|
||||
|
||||
void add_new_state(const state* s, color c)
|
||||
{
|
||||
assert(hc.find(s)==hc.end() && h.find(s)==h.end());
|
||||
assert(c != CYAN);
|
||||
h.insert(std::make_pair(s, std::make_pair(c, bddfalse)));
|
||||
}
|
||||
|
||||
void add_new_state(const state* s, color c, const weight& w)
|
||||
{
|
||||
assert(hc.find(s)==hc.end() && h.find(s)==h.end());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue