expansions: allow toggling merge_edges off
This commit is contained in:
parent
0168efea60
commit
d410435adc
2 changed files with 6 additions and 1 deletions
|
|
@ -1759,7 +1759,11 @@ namespace spot
|
||||||
}
|
}
|
||||||
|
|
||||||
aut->set_named_prop("state-names", state_names);
|
aut->set_named_prop("state-names", state_names);
|
||||||
aut->merge_edges();
|
|
||||||
|
if ((opts & exp_opts_new::MergeEdges)
|
||||||
|
&& !(opts & exp_opts_new::UniqueSuffix))
|
||||||
|
aut->merge_edges();
|
||||||
|
|
||||||
return aut;
|
return aut;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@ namespace spot
|
||||||
UniquePrefix = 2,
|
UniquePrefix = 2,
|
||||||
BddIsop = 4,
|
BddIsop = 4,
|
||||||
BddMinterm = 8,
|
BddMinterm = 8,
|
||||||
|
MergeEdges = 16,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue