|
9 | 9 | <div class="columns is-centered"> |
10 | 10 | <div class="column"> |
11 | 11 | <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> |
13 | 13 | <div class="v-content" style="text-align: left; padding-left: 10%; padding-right: 10%;"> |
14 | 14 | <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> |
19 | 19 | </ul> |
20 | 20 | </div> |
21 | 21 | </div> |
|
26 | 26 | <div class="columns is-centered is-flex-direction-row is-flex-wrap-wrap is-align-content-start"> |
27 | 27 | <div class="column is-2-desktop is-12-tablet is-12-mobile"> |
28 | 28 | <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> |
30 | 30 | <div class="v-datalist-row" id="toolbar" |
31 | 31 | 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 |
34 | 34 | </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"> |
36 | 36 | change input |
37 | | - </button> |
| 37 | + </button> --> |
38 | 38 | <button id="next" type="button" name="button" class="v-button"> |
39 | 39 | Next step |
40 | 40 | </button> |
|
47 | 47 | <div class="column is-7-desktop is-12-tablet is-12-mobile"> |
48 | 48 | <div class="v-datalist-container" style="height:400px;" id="circuit-board"> |
49 | 49 | <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 |
51 | 52 | </div> |
52 | 53 | <div id="input_container" class="is-size-1 is-centered is-flex-direction-row is-align-content-center"> |
53 | 54 | </div> |
|
0 commit comments