-
Notifications
You must be signed in to change notification settings - Fork 3
/
CHANGES
42 lines (29 loc) · 1.56 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
-----------------------------------
| CHANGES of the Automata package |
-----------------------------------
1.16 -> 1.16
- Updates related to CI and Codecov (Thanks, Max)
- Streamlined UnionAutomata and IntersectionAutomaton (Thanks, Ruth)
1.14 -> 1.15
- Switch CI to use GitHub Actions (Thanks Max)
- Add Travis & Codecov support (Thanks Max)
- Fixed bug in ProductOfLanguages (pointed out by Christian Sievers)
- Fixed bug in FlowerAutomaton (pointed out by Lars Louder)
1.13 -> 1.14
- drawings are now produced in two steps: first the dot code (that is accessible to the user) and then the display
- added a test file
1.12 -> 1.13
- Corrected a bug in FiniteRegularLanguageToListOfWords (Thanks to Andreas Distler for pointing out this bug)
- Corrected a problem with "DrawingsExtraFormat" (Thanks to Alexander Konovalov for pointing out this problem)
- Corrected a problem with the "drawing" of automata with large alphabets (Thanks to Cameron Smith for pointing out this problem)
Some other minor changes in the code and in the manual have been also performed.
1.11 -> 1.12
- Corrected some inconsistencies concerning alphabets of automata and rational languages
1.10 -> 1.11
- Added the possibility to define dot's graph attributes, affecting all
drawings;
- DrawAutomaton() and DrawSCCAutomaton():
- As optional argument, we may define the text label of each state;
- As optional argument, we may define sets of states to be colored
in different colors;
- Corrected a bug in the function IsContainedLang;