-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
verifit
committed
Oct 18, 2023
1 parent
29519c0
commit c2bfd19
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load_automata | ||
aut0 = (unionall) | ||
is_empty aut0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
load_automaton aut1 | ||
load_automaton aut2 | ||
aut3 = (union aut1 aut2) | ||
is_empty aut3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
load_automaton aut1 | ||
aut3 = (concat aut1 aut1) | ||
aut4 = (concat aut3 aut3) | ||
aut5 = (concat aut4 aut4) | ||
aut6 = (concat aut5 aut5) | ||
aut7 = (concat aut6 aut6) | ||
aut8 = (concat aut7 aut7) | ||
aut9 = (concat aut8 aut8) | ||
aut10 = (concat aut9 aut9) | ||
aut11 = (concat aut10 aut10) | ||
aut12 = (concat aut11 aut11) | ||
is_empty aut12 |