annotate paper/abstract_eng.tex @ 54:130082e3f790

add abstract written by english
author Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
date Mon, 10 Feb 2014 08:30:40 +0900
parents aa6de0f67a0a
children 79d168016df4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
42
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 \begin{abstract_eng}
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 Haskell is a purely-functional programming language.
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 It provides a modern type system, type-safe and type inference makes it possible to write a program reliable\cite{types}.
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 Haskell has referential transparency that allows the programmer and the compiler to reason about program behavior.
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5
54
130082e3f790 add abstract written by english
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents: 43
diff changeset
6 In this study, we implement the parallel database using Haskell.
130082e3f790 add abstract written by english
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents: 43
diff changeset
7 It is use non-destructive tree structure.
130082e3f790 add abstract written by english
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents: 43
diff changeset
8 Non-destructive tree structure is not the destruction of data.
130082e3f790 add abstract written by english
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents: 43
diff changeset
9 Editing of data is done creating by new tree.
130082e3f790 add abstract written by english
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents: 43
diff changeset
10 Haskell compatible with non-destructive tree, because Haskell is destructive updates does not exist
42
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 We measures the performance for reading and writing of parallel database.
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 We achieve to bring out the performance of the multi-core processor.
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 Further, in order to indicate the availability of practical applications, we have developed a Web bulletin board service.
Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 \end{abstract_eng}