Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+0 −0
Q&A Structure for computer science research paper

Adding to Maura's answer: "Detailed design" implies you will go in-depht showing the abstract structure of your project. This means showing what the program does, without looking at the code. Desi...

posted 5y ago by Liquid‭  ·  last activity 4y ago by System‭

Answer
#4: Attribution notice removed by user avatar System‭ · 2019-12-13T11:56:46Z (over 4 years ago)
Source: https://writers.stackexchange.com/a/42411
License name: CC BY-SA 3.0
License URL: https://creativecommons.org/licenses/by-sa/3.0/
#3: Attribution notice added by user avatar System‭ · 2019-12-08T02:46:12Z (over 4 years ago)
Source: https://writers.stackexchange.com/a/42411
License name: CC BY-SA 3.0
License URL: https://creativecommons.org/licenses/by-sa/3.0/
#2: Initial revision by (deleted user) · 2019-12-08T02:46:12Z (over 4 years ago)
Adding to Maura's answer:

" **Detailed design**" implies you will go in-depht showing the abstract structure of your project. This means showing what the program does, without looking at the code. Design decisions have to be discussed and explained, often with the aid of UML-like diagrams, either showing a [class diagram](https://www.ibm.com/developerworks/rational/library/content/RationalEdge/sep04/bell/index.html)

[![UML-classdiagram](https://www.ibm.com/developerworks/rational/library/content/RationalEdge/sep04/bell/bell_fig5.jpg)](https://www.ibm.com/developerworks/rational/library/content/RationalEdge/sep04/bell/bell_fig5.jpg)

or maybe a [process](https://www.process.st/uml-tutorial/):[![enter image description here](https://i.stack.imgur.com/hrSHx.png)](https://i.stack.imgur.com/hrSHx.png)

Those of course are examples. There are a lot of things that can be done with UML in standardized notation - you have to decide what would be the most relevant depending on your program. If the code interacts with external services (e.g. a database, web API's, the internet) it may be worth showing an architectural diagram.

In this section you may also want to describe how you designed _your method_. It's a paper: it implies you have done your research. So it may be relevant to show here how you designed the process of testing.

" **Key Implementation Decisions**" is where you are supposed to show that you got your hands dirty, as a figure of speech. Here you are allowed to talk about your code, or whatever tech-related mechanism you have used in your research.

Keep in mind that you don't need to comment everything: just the "key" parts that are required to understand your program. Nobody wants to read a paper where you describe how you defined an array, since everyone can do that. Essentialy, you have to show how you implemented your design, what's interesting about it, what's new, what's difficult, and what challenges you did undertake.

You may want to show a "core" part of your program; you may want to discuss how you decided to improve the overall performance by using different data-structures during development; you may discuss why a particular method gives you best results, commenting the code. Those are the "decisions" that belong in a paper.

#1: Imported from external source by user avatar System‭ · 2019-02-21T11:58:24Z (about 5 years ago)
Original score: 1