vimwiki/tech/task_decomposition_approach.wiki

14 lines
336 B
Plaintext
Raw Normal View History

2022-02-09 18:15:01 +00:00
= Task Decomposition Approach =
2022-02-09 18:00:01 +00:00
Decompose a high level task into low level subtasks.
* Makes it easier to break real world task into functions (easy to develop from)
* These tasks can be further broken down into smaller subtasks
2022-02-09 18:15:01 +00:00
2022-02-09 18:30:01 +00:00
== task action mapping ==
* One action should perform one task
* IE click button, one task occours
2022-02-09 18:15:01 +00:00