Skip to content

Commit b0f96b9

Browse files
committed
feat: create todo list
1 parent ebd4ee0 commit b0f96b9

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,28 @@
66
git clone https://github.com/byandrev/automata-simulation
77
```
88

9-
109
## Setup
1110

1211
```
1312
npm install
1413
```
14+
1515
```
1616
npm run dev or yarn dev
1717
```
1818

19+
## ToDo
1920

21+
- [ ] Support to AFND and AFNλ
22+
- [ ] Generate transition table
23+
- [ ] Generate automata from the transition table and viceversa
24+
- [ ] Run step by step
25+
- [ ] Customize animation velocity
26+
2027
## Contribution
2128

2229
Thank you for considering contributing to our project! We welcome contributions from the community, whether it's for fixing existing issues, adding new features, or improving the documentation. Here's how you can contribute:
2330

24-
2531
- If you find an issue or have a feature request, please first check our "Issues" section to make sure it hasn't been reported before. If it's a new issue, you can open a new issue and provide a detailed description.
2632

2733
- If you want to contribute with code, follow these steps:

index.html

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,29 @@ <h2 class="text-2xl font-bold mb-2">About</h2>
173173
</div>
174174

175175
<div class="my-10">
176-
<h2 class="text-2xl font-bold mb-2">Collaborate</h2>
176+
<h2 class="text-2xl font-bold mb-2">ToDo</h2>
177+
178+
<ul class="ml-2">
179+
<li>
180+
<i class="fa-regular fa-square-check"></i> Support to AFND and AFN λ
181+
</li>
182+
<li>
183+
<i class="fa-regular fa-square-check"></i> Generate transition table
184+
</li>
185+
<li>
186+
<i class="fa-regular fa-square-check"></i> Generate automata from the
187+
transition table and viceversa
188+
</li>
189+
<li><i class="fa-regular fa-square-check"></i> Run step by step</li>
190+
<li>
191+
<i class="fa-regular fa-square-check"></i> Customize animation
192+
velocity
193+
</li>
194+
</ul>
195+
</div>
196+
197+
<div class="my-10">
198+
<h3 class="text-2xl font-bold mb-2">Collaborate</h3>
177199

178200
<p class="mb-4">
179201
Thank you for considering contributing to our project! We welcome

0 commit comments

Comments
 (0)