Skip to content

Commit

Permalink
Update programs
Browse files Browse the repository at this point in the history
  • Loading branch information
verifit committed Oct 18, 2023
1 parent 29519c0 commit c2bfd19
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions programs/bool_comb_intersect_union.emp
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
load_automata
aut0 = (unionall)
is_empty aut0
4 changes: 4 additions & 0 deletions programs/bool_comb_union.emp
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
12 changes: 12 additions & 0 deletions programs/concat.emp
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

0 comments on commit c2bfd19

Please sign in to comment.