Skip to content

Commit 4e04d46

Browse files
committed
update data
1 parent b92687a commit 4e04d46

File tree

5 files changed

+770
-355
lines changed

5 files changed

+770
-355
lines changed

experiment/.DS_Store

6 KB
Binary file not shown.

experiment/simulation/index.html

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
<div class="columns is-centered">
1010
<div class="column">
1111
<div class="v-collapsible-instruction-container v-instruction-container">
12-
<div id="instruction-title" class="v-collapsible is-size-5">Instructions<br>Simulating a deterministic finite automata</div>
12+
<div id="instruction-title" class="v-collapsible is-size-5">Instructions<br>Conversion of REGEX to NFA</div>
1313
<div class="v-content" style="text-align: left; padding-left: 10%; padding-right: 10%;">
1414
<ul style="list-style: disc;">
15-
<li> <strong>Change DFA</strong> button switches to a different DFA</li>
16-
<li><strong>Change input</strong> changes the input given to the DFA</li>
17-
<li><strong>Next</strong> displays the next step in DFA simulation</li>
18-
<li><strong>Prev</strong> displays the previous step in DFA simulation</li>
15+
<li> <strong>Change REGEX</strong> button switches to a different Regular Expression</li>
16+
<!-- <li><strong>Change input</strong> changes the input given to the DFA</li> -->
17+
<li><strong>Next</strong> displays the next step in REGEX to NFA conversion</li>
18+
<li><strong>Prev</strong> displays the previous step in REGEX to NFA conversion</li>
1919
</ul>
2020
</div>
2121
</div>
@@ -26,15 +26,15 @@
2626
<div class="columns is-centered is-flex-direction-row is-flex-wrap-wrap is-align-content-start">
2727
<div class="column is-2-desktop is-12-tablet is-12-mobile">
2828
<div class="v-datalist-container" style="height:400px;">
29-
<div class="v-datalist-title">DFA controls</div>
29+
<div class="v-datalist-title">Controls</div>
3030
<div class="v-datalist-row" id="toolbar"
3131
style="display: flex;flex-direction: column;justify-content: space-evenly;align-items: center;">
32-
<button id="change_dfa" type="button" name="button" class="v-button">
33-
change DFA
32+
<button id="change_re" type="button" name="button" class="v-button">
33+
change REGEX
3434
</button>
35-
<button id="change_input" type="button" name="button" class="v-button">
35+
<!-- <button id="change_input" type="button" name="button" class="v-button">
3636
change input
37-
</button>
37+
</button> -->
3838
<button id="next" type="button" name="button" class="v-button">
3939
Next step
4040
</button>
@@ -47,7 +47,8 @@
4747
<div class="column is-7-desktop is-12-tablet is-12-mobile">
4848
<div class="v-datalist-container" style="height:400px;" id="circuit-board">
4949
<div id="working-area">
50-
<div id="DFA_description_container" class="is-size-4 is-centered is-flex-direction-row is-align-content-center">
50+
<div id="RE_description_container" class="is-size-4 is-centered is-flex-direction-row is-align-content-center">
51+
Conversion of following REGEX to NFA
5152
</div>
5253
<div id="input_container" class="is-size-1 is-centered is-flex-direction-row is-align-content-center">
5354
</div>

0 commit comments

Comments
 (0)