dot: add option K
* spot/twaalgos/dot.cc: Here. * NEWS, bin/common_aoutput.cc: Mention it. * tests/python/ltsmin-pml.ipynb: Use it. * tests/python/ipnbdoctest.py: Work around some graphviz version differences.
This commit is contained in:
parent
75b5449ac3
commit
5c1d9c492c
5 changed files with 726 additions and 17 deletions
|
|
@ -115,12 +115,16 @@ def canonicalize(s, type, ignores):
|
|||
s = re.sub(r' fill="black"', '', s)
|
||||
s = re.sub(r' stroke="transparent"', ' stroke="none"', s)
|
||||
s = re.sub(r'><title>', '>\n<title>', s)
|
||||
# tooltips with a ", " are likely to have \n which was not
|
||||
# well supported by 2.38.
|
||||
s = re.sub(r'<a xlink:title=".*?, .*?">\n', '<a xlink:title="...">\n', s,
|
||||
flags=re.DOTALL)
|
||||
# Different Pandas versions produce different CSS styles (when there is a
|
||||
# style).
|
||||
s = re.sub(r'<style[ a-z]*>.*</style>\n', '', s, flags=re.DOTALL)
|
||||
# Table that contains enc.user are log from the SAT-solver. They contain
|
||||
# timing result we cannot compare between runs.
|
||||
s = re.sub(r'<table.*dataframe.*enc.user.*</table>', '<table></table>', s,
|
||||
s = re.sub(r'<table.*dataframe.*?enc.user.*?</table>', '<table></table>', s,
|
||||
flags=re.DOTALL)
|
||||
|
||||
for n, p in enumerate(ignores):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue