Mercurial > hg > Papers > 2015 > oc-thesis
changeset 1:dc17ac172c7d
add thesis in production.
line wrap: on
line diff
--- a/Makefile Sun Feb 01 07:02:29 2015 +0900 +++ b/Makefile Sun Feb 08 17:45:46 2015 +0900 @@ -3,7 +3,7 @@ SRC = $(wildcard *.tex) LATEX = platex -# BIBTEX = jbibtex +BIBTEX = jbibtex DVIPS = dvips DVIPDFM = dvipdfmx RM = rm -f @@ -23,7 +23,7 @@ dvi: @echo "----------- make dvi file ($(TARGET).dvi) ----------" $(LATEX) $(TARGET) -# $(BIBTEX) $(TARGET) + $(BIBTEX) $(TARGET) $(LATEX) $(TARGET) $(LATEX) $(TARGET) pdf: dvi
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter1.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,42 @@ +\chapter{序論} +\pagenumbering{arabic} + +\section{研究背景と目的} + +多人数で意見を交わし合い、モチベーションを高めたいといった場面がある。 +多人数でコミュニケーションを取るためには、目的を共有し、意見・アイデア・質問を交わし合う必要がある。 +話し合いの場として、授業やゼミ、会議等がある。 +そういった場では、PCを用いて個人がプレゼンテーションを行ったり、書記として集まりの内容をまとめる等が必要となる。 + +プロジェクタに画面を映すという方法があるが、発表者毎にケーブルの抜き差しを行わなければいけないといった煩わしさがある。 + +これらの問題は、オープンソースなアプリケーションであるVNCを用いることで解決することができる。 +VNCとは、RFBプロトコルを使用して、画面のデータを配信するシステムであり、RFBプロトコルは自身の画面をネットワークを介して他の画面に配信するためのプロトコルである。 + +しかし、従来のVNCに多人数で接続すると、配信側に負荷がかかり処理性能が落ちてしまう。 +発表者を入れ替える際にも、いちいち接続し直さないといけない。 + + +ケーブルの話 +画面切り替えの話 +遠隔地の話 +音声共有の話 + + + +%いつものslide研究目的 + +多人数で意見を交わし合い、モチベーションを高めたい。 +そこで多人数でのコミュニケーションの充実を測る。 +コミュニケーションの要素として、 +目的を共有し、意見・アイデア・質問を交わし合うことが必要である。 + +TreeVNCでは、多人数に画面を配信することによって、 +手元のPCで一つの画面を共有することができる。 + +画面の切り替えをスムーズに切り替えることができ、 +綺麗な画質を保ちながらリアルタイムで共有することができる。 + +更に、遠隔地からでもコミュニケーションに参加できるように、 +ルータを超えて画面を配信することができるようになる予定である。 +遠隔地から接続できる機能を追加するとともに音も共有する予定である。
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter2.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,102 @@ +\chapter{TreeVNC について} + + +\section{RFBプロトコル} +RFB(remote frame buffer)プロトコル\cite{rfbProtocol}とは、自身の画面を送信し、ネットワーク越しに他者の画面に表示するプロトコルである。 +ユーザが居る側をRFBクライアント側と呼び、Framebufferへの更新が行われる側はRFBサーバと呼ぶ。 +Framebufferとは、メモリ上に置かれた画像データのことである。 +RFBプロトコルの概要を図\ref{fig:rfb}に示す。 +RFBプロトコルでは、最初にプロトコルバージョンの確認(図\ref{fig:rfb}中,2:)や認証が行われる(図\ref{fig:rfb}中,3:)。 +その後、クライアントに向けてFramebufferの大きさやデスクトップに付けられた名前などが含まれている初期メッセージが送信される(図\ref{fig:rfb}中,4:)。 +RFBサーバ側はFramebufferの更新が行われるたびに、RFBクライアントに対してFramebufferの変更部分だけを送信する(図\ref{fig:rfb}中,5:)。更にRFBクライアントのFramebufferUpdateRequestが来るとそれに答え返信する。 +RFBプロトコルは、描画データに使われるエンコードが多数用意されており、また独自のエンコードを実装することもできるプロトコルである。 + +\begin{figure}[!htbp] +\begin{center} +\includegraphics[width=110mm]{./images/chapter2/rfbprotocol.pdf} +\end{center} +\caption{RFBプロトコル} +\label{fig:rfb} +\end{figure} + + +\section{TightVNC} +TightVNC(Tight Virtual Network Computing)\cite{tightvnc}はJavaを用いて作成されたRFBプロトコルのクライアントである。 +本研究で作成したTreeVNCはTightVNCを元に作成されている。 + + +\newpage + +\section{node間のメッセージ} +RFBプロトコルで提供されているメッセージに加え、 TreeVNC 独自のメッセージを使用している。 +TreeVNC で使用されるメッセージの一覧を表\ref{tb:message}に示す。 + +\begin{table*}[htb] + \scriptsize + \begin{tabular}{|l|l|l|} \hline + 通信経路 & message & 説明 \\ \hline \hline + & FIND\_ROOT & 子node接続時にrootを探す。 \\ \cline{2-3} + send direct message & WHERE\_TO\_CONNECT & どのnodeに接続すれば良いかを聞く。 \\ \cline{2-3} + (child to root) & LOST\_PARENT & 親nodeの接続が切れた時にrootに知らせる。 \\ \hline + + & FIND\_ROOT\_REPLY & FIND\_ROOTへの返信。 \\ \cline{2-3} + send direct message & CONNECT\_TO & nodeとnodeの接続をする。 \\ \cline{2-3} + (root to child) & CONNECT\_TO\_AS\_LEADER & 左子nodeとして、nodeとnodeの接続をする。 \\ \hline + + message down tree & FRAMEBUFFER\_UPDATE & 画面の差分の画像データ。EncodingTypeを持っている。\\ \cline{2-3} + (root to child) & CHECK\_DELAY & 通信の遅延を測定するmessage。 \\ \hline + + message up tree & CHECK\_DELAY\_REPLY & CHECK\_DELAYへの返信。 \\ \cline{2-3} + (child to root) & SERVER\_CHANGE\_REQUEST & 画面切り替えのリクエスト。 \\ \hline + + & FRAMEBUFFER\_UPDATE\_REPLY & FRAMEBUFFER\_UPDATEのリクエスト。 \\ \cline{2-3} + send message & SET\_PIXEL\_FORMAT & pixel値の設定。 \\ \cline{2-3} + (root to VNCServer) & SET\_ENCODINGS & pixelデータのencodeTypeの設定。 \\ \cline{2-3} + & KEY\_EVENT & キーボードからのイベント。 \\ \cline{2-3} + & POINTER\_EVENT & ポインタからのイベント。 \\ \cline{2-3} + & CLIENT\_CUT\_TEXT & テキストのカットバッファを持った際のmessage。 \\ \hline + + & FRAMEBUFFER\_UPDATE & 大本の画面の差分の画像データ。EncodingTypeを持っている。 \\ \cline{2-3} + send message & SET\_COLOR\_MAP\_ENTRIES & 指定されているpixel値にマップするRGB値。 \\ \cline{2-3} + (VNCServer to root) & BELL & ビープ音を鳴らす。 \\ \cline{2-3} + & SERVER\_CUT\_TEXT & サーバがテキストのカットバッファを持った際のmessage。 \\ \hline + + \end{tabular} + \caption{通信経路とmessage一覧} + \label{tb:message} +\end{table*} + +\section{多人数でVNCを使用するときの問題点} +多人数で従来の VNC を使用する際、1つのコンピュータに多人数が同時につながり、 +処理が集中してしまい、性能が大幅に落ちてしまうという問題が生じる。 + +ゼミ等の画面配信者が頻繁に切り替わる場合、 +配信者が替わる度に、接続をし直さないといけないという問題がある。 + + +\section{TreeVNC の構造} +多人数で VNC を用いるために、クライアントの接続がサーバに一極集中してしまう問題を解決する。 +そのために、 TreeVNC はサーバへ接続しに来たクライアントをバイナリツリー状に接続する(図\ref{fig:tree})。 +バイナリツリーなら、各nodeに最大2台分のクライアントしか接続されない。 +$N$台のクライアントが接続しに来た場合、画面配信の画像データをコピーする回数は、 +従来のVNCでは$N$回、TreeVNCでは$log N * 2$回となる。 +TreeVNCは、rootへの負荷を各nodeに分散することにより、 +処理性能が向上している。 + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter2/TreeVNC.pdf} + \end{center} + \caption{構成される木構造} + \label{fig:tree} +\end{figure} + + +\newpage + + + + +\section{配信画面切り替え} + +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter3.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,90 @@ +\chapter{TreeVNC のリファクタリング} + +\section{動的な port 番号の指定} +TreeVNCは複雑な分散アルゴリズムを用いたシステムであり、 +デバッグを行う環境を整える必要がある。 + +従来のTreeVNCでは、固定port番号を複数利用していた。 +port番号は一意なので、1台で複数のTreeVNCを立ち上げることができない。 + +動的にport番号を割り当てることで、 +1つのnodeに対して複数のTreeVNCを起動することを可能にした。 +最低限のソケットポートを開けることによって、 +メモリの使用量を抑えることにも繋がる。 + +% messageの説明にportにどんな関係があるのかあとから +以前は固定port番号を使用しmessageの通信を行っていたが、 +一意なportを割り当てられているnodeが通信を行うことによって、 +どのport番号が使用されているかを意識する必要がなくなった。 + + +\section{ホスト切り替え時の挙動の修正} +画面の切り替えを行う際、新しいホスト側の画面に生じた +ビデオフィードバックが他のユーザに配信されてしまう問題があった。 + +ホストの切り替えの際、 +新しいホスト側のviewerを閉じることで問題を解決した。 + + +\newpage + + +\section{Tree の構成の変更} + +従来のTreeVNCは、クライアントの接続する木構造が単一であった。 +そのため、ネットワークインターフェースが違うクライアントが +同じ木に混在している状況が生じた。 + +速度の遅いクライアントが木に存在すると、 +そのクライアント以下の通信速度が遅くなってしまう。 + +この問題を解決するために、 +図\ref{fig:multinetworktree}の様に、ネットワークインターフェース別に +木構造を形成するように設計した。 + +TreeVNCは、rootがnodeListというリストを保持し、木構造を管理している。 +複数のネットワークインターフェースで木構造を形成する場合、 +このnodeListをネットワークインターフェース毎に作成しておく。 +新しいnodeを接続する際、nodeのネットワークインターフェースを取得し、 +どのnodeListに登録されるかが決まる。 +こうすることによって、TreeVNCを複数のネットワークインターフェイス別に +木構造を構成することができる。 + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter3/MultiNetworkTree.pdf} + \end{center} + \caption{Multi Network Tree} + \label{fig:multinetworktree} +\end{figure} + + +\section{切断時の検知方法の変更} + +lostParent\ref{fig:lostparent} を lostChild\ref{fig:lostchild1} へ。 +lostChild の接続切り替えの図\ref{fig:lostchild2} + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter3/lostParent.pdf} + \end{center} + \caption{lostParent} + \label{fig:lostparent} +\end{figure} + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter3/lostChild1.pdf} + \end{center} + \caption{lostChild1} + \label{fig:lostchild1} +\end{figure} + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter3/lostChild2.pdf} + \end{center} + \caption{lostChild2} + \label{fig:lostchild2} +\end{figure} +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter4.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,68 @@ +\chapter{TreeVNC の新機能} + +\section{画面サイズ調整機能} + +配信する画面サイズを指定できるオプションを追加した。 +TreeVNC 起動時にオプション(--fixSize)を追加することによって、 +指定した幅・高さの画面サイズのみを配信することができる。 + +VNCServer からは、配信する側の画面全体のデータが送信される。 +画面データを root が受信し、接続されている node に画面データを送信する。 + +指定した画面サイズのデータのみを表示する方法として、 +画面全体のデータを受信する root 側で指定した画面サイズの領域内の更新のみをフィルタリングする。 +フィルタリングされた画面データを node は受信するので、指定された領域以外は表示されない。 + +\newpage + +\section{マルチディスプレイ対応} + +画面配信側がマルチディスプレイの場合、 +VNCServer からは全画面データが送信されるので複数の画面が共有される。 +しかし、プレゼンテーションの際にスライドを全画面で表示する等、複数枚の画面表示が要らない場面がある。 +一画面のみをフィルタリングするオプション機能(--filterSingleDisplay)を追加した。 +オプションを追加した起動方法をソースコード\ref{filtersingledisplay}に記述する。 + +\begin{lstlisting}[caption=オプション--filterSingleDisplay,label=filtersingledisplay] + $ java -jar TreeVNC.java -d --filterSingleDisplay +\end{lstlisting} + + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter4/flameDisplaySizeFilterVer.pdf} + \end{center} + \caption{} + \label{fig:} +\end{figure} + + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter4/sendInitData.pdf} + \end{center} + \caption{} + \label{fig:} +\end{figure} + + +\newpage + +\section{遠隔地からの接続} + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter4/remotenetwork.pdf} + \end{center} + \caption{Remote Network Tree} + \label{fig:remotenetworktree1} +\end{figure} + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=0.4]{./images/chapter4/remotenetwork2.pdf} + \end{center} + \caption{Remote Network Tree} + \label{fig:remotenetworktree2} +\end{figure} +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter5.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,36 @@ +\chapter{TreeVNC の評価} + +\section{評価環境} +\section{depth毎の遅延} + +\begin{figure}[htpd] + \begin{center} + \includegraphics[scale=1.0]{./images/Test/step1.eps} + \end{center} + \caption{step1} + \label{fig:gpuarch} +\end{figure} + +%\begin{figure}[htpd] +% \begin{center} +% \includegraphics[scale=1.0]{./images/Test/step2.eps} +% \end{center} +% \caption{step2} +% \label{fig:gpuarch} +%\end{figure} +% +%\begin{figure}[htpd] +% \begin{center} +% \includegraphics[scale=1.0]{./images/Test/step3.eps} +% \end{center} +% \caption{step3} +% \label{fig:gpuarch} +%\end{figure} +% +%\begin{figure}[htpd] +% \begin{center} +% \includegraphics[scale=1.0]{./images/Test/step4.eps} +% \end{center} +% \caption{step1} +% \label{fig:gpuarch} +%\end{figure}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter6.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,3 @@ +\chapter{まとめ} + +\section{今後の課題}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter7.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,2 @@ +\chapter{参考文献} +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/chapter8.tex Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,1 @@ +\chapter{謝辞}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/Test/step1.eps Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,1005 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: step1.eps +%%Creator: gnuplot 4.6 patchlevel 6 +%%CreationDate: Fri Feb 6 21:41:27 2015 +%%DocumentFonts: (atend) +%%BoundingBox: 50 50 410 302 +%%EndComments +%%BeginProlog +/gnudict 256 dict def +gnudict begin +% +% The following true/false flags may be edited by hand if desired. +% The unit line width and grayscale image gamma correction may also be changed. +% +/Color false def +/Blacktext false def +/Solid false def +/Dashlength 1 def +/Landscape false def +/Level1 false def +/Rounded false def +/ClipToBoundingBox false def +/SuppressPDFMark false def +/TransparentPatterns false def +/gnulinewidth 5.000 def +/userlinewidth gnulinewidth def +/Gamma 1.0 def +/BackgroundColor {-1.000 -1.000 -1.000} def +% +/vshift -46 def +/dl1 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if +} def +/dl2 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul add } if +} def +/hpt_ 31.5 def +/vpt_ 31.5 def +/hpt hpt_ def +/vpt vpt_ def +/doclip { + ClipToBoundingBox { + newpath 50 50 moveto 410 50 lineto 410 302 lineto 50 302 lineto closepath + clip + } if +} def +% +% Gnuplot Prolog Version 4.6 (September 2012) +% +%/SuppressPDFMark true def +% +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/N {newpath moveto} bind def +/Z {closepath} bind def +/C {setrgbcolor} bind def +/f {rlineto fill} bind def +/g {setgray} bind def +/Gshow {show} def % May be redefined later in the file to support UTF-8 +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow {currentpoint stroke M 0 vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def + /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def +/DL {Color {setrgbcolor Solid {pop []} if 0 setdash} + {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def +/BL {stroke userlinewidth 2 mul setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/AL {stroke userlinewidth 2 div setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/UL {dup gnulinewidth mul /userlinewidth exch def + dup 1 lt {pop 1} if 10 mul /udl exch def} def +/PL {stroke userlinewidth setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +3.8 setmiterlimit +% Default Line colors +/LCw {1 1 1} def +/LCb {0 0 0} def +/LCa {0 0 0} def +/LC0 {1 0 0} def +/LC1 {0 1 0} def +/LC2 {0 0 1} def +/LC3 {1 0 1} def +/LC4 {0 1 1} def +/LC5 {1 1 0} def +/LC6 {0 0 0} def +/LC7 {1 0.3 0} def +/LC8 {0.5 0.5 0.5} def +% Default Line Types +/LTw {PL [] 1 setgray} def +/LTb {BL [] LCb DL} def +/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def +/LT0 {PL [] LC0 DL} def +/LT1 {PL [4 dl1 2 dl2] LC1 DL} def +/LT2 {PL [2 dl1 3 dl2] LC2 DL} def +/LT3 {PL [1 dl1 1.5 dl2] LC3 DL} def +/LT4 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def +/LT5 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC5 DL} def +/LT6 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC6 DL} def +/LT7 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC7 DL} def +/LT8 {PL [2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 4 dl2] LC8 DL} def +/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def +/Dia {stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + Pnt} def +/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + Pnt} def +/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke} def +/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + Pnt} def +/Star {2 copy Pls Crs} def +/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath fill} def +/TriUF {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath fill} def +/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke + Pnt} def +/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath fill} def +/DiaF {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath fill} def +/Pent {stroke [] 0 setdash 2 copy gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore Pnt} def +/PentF {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath fill grestore} def +/Circle {stroke [] 0 setdash 2 copy + hpt 0 360 arc stroke Pnt} def +/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def +/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def +/C1 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + vpt 0 360 arc closepath} bind def +/C2 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C3 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C4 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C5 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc + 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc} bind def +/C6 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C7 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C8 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C9 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 450 arc closepath fill + vpt 0 360 arc closepath} bind def +/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill + 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C11 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C12 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C13 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C14 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 360 arc closepath fill + vpt 0 360 arc} bind def +/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath} bind def +/Square {dup Rec} bind def +/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def +/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def +/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def +/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def +/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill + exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def +/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill + Bsquare} bind def +/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill + Bsquare} bind def +/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def +/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def +/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def +/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def +/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def +/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def +/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def +/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def +/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def +/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def +/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def +/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def +/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def +/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def +/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def +/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def +/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def +/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def +/DiaE {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke} def +/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke} def +/TriUE {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke} def +/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke} def +/PentE {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore} def +/CircE {stroke [] 0 setdash + hpt 0 360 arc stroke} def +/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def +/DiaW {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V Opaque stroke} def +/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V Opaque stroke} def +/TriUW {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V Opaque stroke} def +/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V Opaque stroke} def +/PentW {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + Opaque stroke grestore} def +/CircW {stroke [] 0 setdash + hpt 0 360 arc Opaque stroke} def +/BoxFill {gsave Rec 1 setgray fill grestore} def +/Density { + /Fillden exch def + currentrgbcolor + /ColB exch def /ColG exch def /ColR exch def + /ColR ColR Fillden mul Fillden sub 1 add def + /ColG ColG Fillden mul Fillden sub 1 add def + /ColB ColB Fillden mul Fillden sub 1 add def + ColR ColG ColB setrgbcolor} def +/BoxColFill {gsave Rec PolyFill} def +/PolyFill {gsave Density fill grestore grestore} def +/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def +% +% PostScript Level 1 Pattern Fill routine for rectangles +% Usage: x y w h s a XX PatternFill +% x,y = lower left corner of box to be filled +% w,h = width and height of box +% a = angle in degrees between lines and x-axis +% XX = 0/1 for no/yes cross-hatch +% +/PatternFill {gsave /PFa [ 9 2 roll ] def + PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate + PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse + clip + currentlinewidth 0.5 mul setlinewidth + /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def + 0 0 M PFa 5 get rotate PFs -2 div dup translate + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 M 0 PFs V} for + 0 PFa 6 get ne { + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 2 1 roll M PFs 0 V} for + } if + stroke grestore} def +% +/languagelevel where + {pop languagelevel} {1} ifelse + 2 lt + {/InterpretLevel1 true def} + {/InterpretLevel1 Level1 def} + ifelse +% +% PostScript level 2 pattern fill definitions +% +/Level2PatternFill { +/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8} + bind def +/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} +>> matrix makepattern +/Pat1 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke + 0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke} +>> matrix makepattern +/Pat2 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L + 8 8 L 8 0 L 0 0 L fill} +>> matrix makepattern +/Pat3 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L + 0 12 M 12 0 L stroke} +>> matrix makepattern +/Pat4 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L + 0 -4 M 12 8 L stroke} +>> matrix makepattern +/Pat5 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L + 0 12 M 8 -4 L 4 12 M 10 0 L stroke} +>> matrix makepattern +/Pat6 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L + 0 -4 M 8 12 L 4 -4 M 10 8 L stroke} +>> matrix makepattern +/Pat7 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L + 12 0 M -4 8 L 12 4 M 0 10 L stroke} +>> matrix makepattern +/Pat8 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L + -4 0 M 12 8 L -4 4 M 8 10 L stroke} +>> matrix makepattern +/Pat9 exch def +/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def +/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def +/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def +/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def +/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def +/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def +/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def +} def +% +% +%End of PostScript Level 2 code +% +/PatternBgnd { + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse +} def +% +% Substitute for Level 2 pattern fill codes with +% grayscale if Level 2 support is not selected. +% +/Level1PatternFill { +/Pattern1 {0.250 Density} bind def +/Pattern2 {0.500 Density} bind def +/Pattern3 {0.750 Density} bind def +/Pattern4 {0.125 Density} bind def +/Pattern5 {0.375 Density} bind def +/Pattern6 {0.625 Density} bind def +/Pattern7 {0.875 Density} bind def +} def +% +% Now test for support of Level 2 code +% +Level1 {Level1PatternFill} {Level2PatternFill} ifelse +% +/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont +dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall +currentdict end definefont pop +Level1 SuppressPDFMark or +{} { +/SDict 10 dict def +systemdict /pdfmark known not { + userdict /pdfmark systemdict /cleartomark get put +} if +SDict begin [ + /Title (step1.eps) + /Subject (gnuplot plot) + /Creator (gnuplot 4.6 patchlevel 6) + /Author (OcBookPro) +% /Producer (gnuplot) +% /Keywords () + /CreationDate (Fri Feb 6 21:41:27 2015) + /DOCINFO pdfmark +end +} ifelse +end +%%EndProlog +%%Page: 1 1 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1333 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 200) Rshow +1.000 UL +LTb +770 2217 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 400) Rshow +1.000 UL +LTb +770 3102 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 600) Rshow +1.000 UL +LTb +770 3986 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 800) Rshow +1.000 UL +LTb +770 4871 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step1.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +770 448 N +0 35 V +154 0 V +0 -35 V +-154 0 V +Z stroke +924 448 N +0 3583 V +309 0 V +0 -3583 V +-309 0 V +Z stroke +1233 448 N +0 2879 V +309 0 V +0 -2879 V +-309 0 V +Z stroke +1542 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +1851 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +2160 448 N +0 31 V +309 0 V +0 -31 V +-309 0 V +Z stroke +2469 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +2778 448 N +0 9 V +308 0 V +0 -9 V +-308 0 V +Z stroke +3086 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +3395 448 N +0 13 V +309 0 V +0 -13 V +-309 0 V +Z stroke +3704 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +4013 448 N +0 18 V +309 0 V +0 -18 V +-309 0 V +Z stroke +4322 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +4631 448 N +0 4 V +308 0 V +0 -4 V +-308 0 V +Z stroke +4939 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +5248 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +5557 448 N +0 18 V +309 0 V +0 -18 V +-309 0 V +Z stroke +5866 448 N +0 4 V +463 0 V +0 -4 V +-463 0 V +Z stroke +6329 448 N +0 9 V +464 0 V +0 -9 V +-464 0 V +Z stroke +6793 448 N +0 4 V +154 0 V +0 -4 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Page: 2 2 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1333 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 200) Rshow +1.000 UL +LTb +770 2217 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 400) Rshow +1.000 UL +LTb +770 3102 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 600) Rshow +1.000 UL +LTb +770 3986 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 800) Rshow +1.000 UL +LTb +770 4871 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step1.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +770 448 N +0 35 V +154 0 V +0 -35 V +-154 0 V +Z stroke +924 448 N +0 3583 V +309 0 V +0 -3583 V +-309 0 V +Z stroke +1233 448 N +0 2879 V +309 0 V +0 -2879 V +-309 0 V +Z stroke +1542 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +1851 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +2160 448 N +0 31 V +309 0 V +0 -31 V +-309 0 V +Z stroke +2469 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +2778 448 N +0 9 V +308 0 V +0 -9 V +-308 0 V +Z stroke +3086 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +3395 448 N +0 13 V +309 0 V +0 -13 V +-309 0 V +Z stroke +3704 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +4013 448 N +0 18 V +309 0 V +0 -18 V +-309 0 V +Z stroke +4322 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +4631 448 N +0 4 V +308 0 V +0 -4 V +-308 0 V +Z stroke +4939 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +5248 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +5557 448 N +0 18 V +309 0 V +0 -18 V +-309 0 V +Z stroke +5866 448 N +0 4 V +463 0 V +0 -4 V +-463 0 V +Z stroke +6329 448 N +0 9 V +464 0 V +0 -9 V +-464 0 V +Z stroke +6793 448 N +0 4 V +154 0 V +0 -4 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Trailer +%%DocumentFonts: Helvetica
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/Test/step2.eps Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,1037 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: step2.eps +%%Creator: gnuplot 4.6 patchlevel 6 +%%CreationDate: Fri Feb 6 21:42:43 2015 +%%DocumentFonts: (atend) +%%BoundingBox: 50 50 410 302 +%%EndComments +%%BeginProlog +/gnudict 256 dict def +gnudict begin +% +% The following true/false flags may be edited by hand if desired. +% The unit line width and grayscale image gamma correction may also be changed. +% +/Color false def +/Blacktext false def +/Solid false def +/Dashlength 1 def +/Landscape false def +/Level1 false def +/Rounded false def +/ClipToBoundingBox false def +/SuppressPDFMark false def +/TransparentPatterns false def +/gnulinewidth 5.000 def +/userlinewidth gnulinewidth def +/Gamma 1.0 def +/BackgroundColor {-1.000 -1.000 -1.000} def +% +/vshift -46 def +/dl1 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if +} def +/dl2 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul add } if +} def +/hpt_ 31.5 def +/vpt_ 31.5 def +/hpt hpt_ def +/vpt vpt_ def +/doclip { + ClipToBoundingBox { + newpath 50 50 moveto 410 50 lineto 410 302 lineto 50 302 lineto closepath + clip + } if +} def +% +% Gnuplot Prolog Version 4.6 (September 2012) +% +%/SuppressPDFMark true def +% +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/N {newpath moveto} bind def +/Z {closepath} bind def +/C {setrgbcolor} bind def +/f {rlineto fill} bind def +/g {setgray} bind def +/Gshow {show} def % May be redefined later in the file to support UTF-8 +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow {currentpoint stroke M 0 vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def + /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def +/DL {Color {setrgbcolor Solid {pop []} if 0 setdash} + {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def +/BL {stroke userlinewidth 2 mul setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/AL {stroke userlinewidth 2 div setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/UL {dup gnulinewidth mul /userlinewidth exch def + dup 1 lt {pop 1} if 10 mul /udl exch def} def +/PL {stroke userlinewidth setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +3.8 setmiterlimit +% Default Line colors +/LCw {1 1 1} def +/LCb {0 0 0} def +/LCa {0 0 0} def +/LC0 {1 0 0} def +/LC1 {0 1 0} def +/LC2 {0 0 1} def +/LC3 {1 0 1} def +/LC4 {0 1 1} def +/LC5 {1 1 0} def +/LC6 {0 0 0} def +/LC7 {1 0.3 0} def +/LC8 {0.5 0.5 0.5} def +% Default Line Types +/LTw {PL [] 1 setgray} def +/LTb {BL [] LCb DL} def +/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def +/LT0 {PL [] LC0 DL} def +/LT1 {PL [4 dl1 2 dl2] LC1 DL} def +/LT2 {PL [2 dl1 3 dl2] LC2 DL} def +/LT3 {PL [1 dl1 1.5 dl2] LC3 DL} def +/LT4 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def +/LT5 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC5 DL} def +/LT6 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC6 DL} def +/LT7 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC7 DL} def +/LT8 {PL [2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 4 dl2] LC8 DL} def +/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def +/Dia {stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + Pnt} def +/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + Pnt} def +/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke} def +/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + Pnt} def +/Star {2 copy Pls Crs} def +/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath fill} def +/TriUF {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath fill} def +/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke + Pnt} def +/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath fill} def +/DiaF {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath fill} def +/Pent {stroke [] 0 setdash 2 copy gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore Pnt} def +/PentF {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath fill grestore} def +/Circle {stroke [] 0 setdash 2 copy + hpt 0 360 arc stroke Pnt} def +/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def +/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def +/C1 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + vpt 0 360 arc closepath} bind def +/C2 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C3 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C4 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C5 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc + 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc} bind def +/C6 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C7 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C8 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C9 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 450 arc closepath fill + vpt 0 360 arc closepath} bind def +/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill + 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C11 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C12 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C13 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C14 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 360 arc closepath fill + vpt 0 360 arc} bind def +/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath} bind def +/Square {dup Rec} bind def +/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def +/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def +/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def +/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def +/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill + exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def +/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill + Bsquare} bind def +/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill + Bsquare} bind def +/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def +/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def +/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def +/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def +/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def +/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def +/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def +/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def +/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def +/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def +/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def +/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def +/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def +/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def +/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def +/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def +/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def +/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def +/DiaE {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke} def +/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke} def +/TriUE {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke} def +/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke} def +/PentE {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore} def +/CircE {stroke [] 0 setdash + hpt 0 360 arc stroke} def +/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def +/DiaW {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V Opaque stroke} def +/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V Opaque stroke} def +/TriUW {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V Opaque stroke} def +/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V Opaque stroke} def +/PentW {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + Opaque stroke grestore} def +/CircW {stroke [] 0 setdash + hpt 0 360 arc Opaque stroke} def +/BoxFill {gsave Rec 1 setgray fill grestore} def +/Density { + /Fillden exch def + currentrgbcolor + /ColB exch def /ColG exch def /ColR exch def + /ColR ColR Fillden mul Fillden sub 1 add def + /ColG ColG Fillden mul Fillden sub 1 add def + /ColB ColB Fillden mul Fillden sub 1 add def + ColR ColG ColB setrgbcolor} def +/BoxColFill {gsave Rec PolyFill} def +/PolyFill {gsave Density fill grestore grestore} def +/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def +% +% PostScript Level 1 Pattern Fill routine for rectangles +% Usage: x y w h s a XX PatternFill +% x,y = lower left corner of box to be filled +% w,h = width and height of box +% a = angle in degrees between lines and x-axis +% XX = 0/1 for no/yes cross-hatch +% +/PatternFill {gsave /PFa [ 9 2 roll ] def + PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate + PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse + clip + currentlinewidth 0.5 mul setlinewidth + /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def + 0 0 M PFa 5 get rotate PFs -2 div dup translate + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 M 0 PFs V} for + 0 PFa 6 get ne { + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 2 1 roll M PFs 0 V} for + } if + stroke grestore} def +% +/languagelevel where + {pop languagelevel} {1} ifelse + 2 lt + {/InterpretLevel1 true def} + {/InterpretLevel1 Level1 def} + ifelse +% +% PostScript level 2 pattern fill definitions +% +/Level2PatternFill { +/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8} + bind def +/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} +>> matrix makepattern +/Pat1 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke + 0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke} +>> matrix makepattern +/Pat2 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L + 8 8 L 8 0 L 0 0 L fill} +>> matrix makepattern +/Pat3 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L + 0 12 M 12 0 L stroke} +>> matrix makepattern +/Pat4 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L + 0 -4 M 12 8 L stroke} +>> matrix makepattern +/Pat5 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L + 0 12 M 8 -4 L 4 12 M 10 0 L stroke} +>> matrix makepattern +/Pat6 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L + 0 -4 M 8 12 L 4 -4 M 10 8 L stroke} +>> matrix makepattern +/Pat7 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L + 12 0 M -4 8 L 12 4 M 0 10 L stroke} +>> matrix makepattern +/Pat8 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L + -4 0 M 12 8 L -4 4 M 8 10 L stroke} +>> matrix makepattern +/Pat9 exch def +/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def +/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def +/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def +/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def +/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def +/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def +/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def +} def +% +% +%End of PostScript Level 2 code +% +/PatternBgnd { + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse +} def +% +% Substitute for Level 2 pattern fill codes with +% grayscale if Level 2 support is not selected. +% +/Level1PatternFill { +/Pattern1 {0.250 Density} bind def +/Pattern2 {0.500 Density} bind def +/Pattern3 {0.750 Density} bind def +/Pattern4 {0.125 Density} bind def +/Pattern5 {0.375 Density} bind def +/Pattern6 {0.625 Density} bind def +/Pattern7 {0.875 Density} bind def +} def +% +% Now test for support of Level 2 code +% +Level1 {Level1PatternFill} {Level2PatternFill} ifelse +% +/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont +dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall +currentdict end definefont pop +Level1 SuppressPDFMark or +{} { +/SDict 10 dict def +systemdict /pdfmark known not { + userdict /pdfmark systemdict /cleartomark get put +} if +SDict begin [ + /Title (step2.eps) + /Subject (gnuplot plot) + /Creator (gnuplot 4.6 patchlevel 6) + /Author (OcBookPro) +% /Producer (gnuplot) +% /Keywords () + /CreationDate (Fri Feb 6 21:42:43 2015) + /DOCINFO pdfmark +end +} ifelse +end +%%EndProlog +%%Page: 1 1 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1038 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 200) Rshow +1.000 UL +LTb +770 1627 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 400) Rshow +1.000 UL +LTb +770 2217 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 600) Rshow +1.000 UL +LTb +770 2807 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 800) Rshow +1.000 UL +LTb +770 3397 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 3986 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1200) Rshow +1.000 UL +LTb +770 4576 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1400) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step2.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +924 448 N +0 156 V +309 0 V +0 -156 V +-309 0 V +Z stroke +1233 448 N +0 3432 V +309 0 V +0 -3432 V +-309 0 V +Z stroke +1542 448 N +0 3577 V +309 0 V +0 -3577 V +-309 0 V +Z stroke +1851 448 N +0 97 V +309 0 V +0 -97 V +-309 0 V +Z stroke +2160 448 N +0 18 V +309 0 V +0 -18 V +-309 0 V +Z stroke +2469 448 N +0 27 V +309 0 V +0 -27 V +-309 0 V +Z stroke +2778 448 N +0 12 V +308 0 V +0 -12 V +-308 0 V +Z stroke +3086 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +3395 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +3704 448 N +0 12 V +309 0 V +0 -12 V +-309 0 V +Z stroke +4013 448 N +0 15 V +309 0 V +0 -15 V +-309 0 V +Z stroke +4322 448 N +0 15 V +309 0 V +0 -15 V +-309 0 V +Z stroke +4631 448 N +0 15 V +308 0 V +0 -15 V +-308 0 V +Z stroke +4939 448 N +0 6 V +309 0 V +0 -6 V +-309 0 V +Z stroke +5248 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +5557 448 N +0 6 V +309 0 V +0 -6 V +-309 0 V +Z stroke +5866 448 N +0 21 V +309 0 V +0 -21 V +-309 0 V +Z stroke +6175 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +6484 448 N +0 3 V +309 0 V +0 -3 V +-309 0 V +Z stroke +6793 448 N +0 6 V +154 0 V +0 -6 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Page: 2 2 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1038 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 200) Rshow +1.000 UL +LTb +770 1627 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 400) Rshow +1.000 UL +LTb +770 2217 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 600) Rshow +1.000 UL +LTb +770 2807 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 800) Rshow +1.000 UL +LTb +770 3397 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 3986 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1200) Rshow +1.000 UL +LTb +770 4576 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1400) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step2.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +924 448 N +0 156 V +309 0 V +0 -156 V +-309 0 V +Z stroke +1233 448 N +0 3432 V +309 0 V +0 -3432 V +-309 0 V +Z stroke +1542 448 N +0 3577 V +309 0 V +0 -3577 V +-309 0 V +Z stroke +1851 448 N +0 97 V +309 0 V +0 -97 V +-309 0 V +Z stroke +2160 448 N +0 18 V +309 0 V +0 -18 V +-309 0 V +Z stroke +2469 448 N +0 27 V +309 0 V +0 -27 V +-309 0 V +Z stroke +2778 448 N +0 12 V +308 0 V +0 -12 V +-308 0 V +Z stroke +3086 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +3395 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +3704 448 N +0 12 V +309 0 V +0 -12 V +-309 0 V +Z stroke +4013 448 N +0 15 V +309 0 V +0 -15 V +-309 0 V +Z stroke +4322 448 N +0 15 V +309 0 V +0 -15 V +-309 0 V +Z stroke +4631 448 N +0 15 V +308 0 V +0 -15 V +-308 0 V +Z stroke +4939 448 N +0 6 V +309 0 V +0 -6 V +-309 0 V +Z stroke +5248 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +5557 448 N +0 6 V +309 0 V +0 -6 V +-309 0 V +Z stroke +5866 448 N +0 21 V +309 0 V +0 -21 V +-309 0 V +Z stroke +6175 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +6484 448 N +0 3 V +309 0 V +0 -3 V +-309 0 V +Z stroke +6793 448 N +0 6 V +154 0 V +0 -6 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Trailer +%%DocumentFonts: Helvetica
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/Test/step3.eps Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,1260 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: step3.eps +%%Creator: gnuplot 4.6 patchlevel 6 +%%CreationDate: Fri Feb 6 21:43:11 2015 +%%DocumentFonts: (atend) +%%BoundingBox: 50 50 410 302 +%%EndComments +%%BeginProlog +/gnudict 256 dict def +gnudict begin +% +% The following true/false flags may be edited by hand if desired. +% The unit line width and grayscale image gamma correction may also be changed. +% +/Color false def +/Blacktext false def +/Solid false def +/Dashlength 1 def +/Landscape false def +/Level1 false def +/Rounded false def +/ClipToBoundingBox false def +/SuppressPDFMark false def +/TransparentPatterns false def +/gnulinewidth 5.000 def +/userlinewidth gnulinewidth def +/Gamma 1.0 def +/BackgroundColor {-1.000 -1.000 -1.000} def +% +/vshift -46 def +/dl1 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if +} def +/dl2 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul add } if +} def +/hpt_ 31.5 def +/vpt_ 31.5 def +/hpt hpt_ def +/vpt vpt_ def +/doclip { + ClipToBoundingBox { + newpath 50 50 moveto 410 50 lineto 410 302 lineto 50 302 lineto closepath + clip + } if +} def +% +% Gnuplot Prolog Version 4.6 (September 2012) +% +%/SuppressPDFMark true def +% +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/N {newpath moveto} bind def +/Z {closepath} bind def +/C {setrgbcolor} bind def +/f {rlineto fill} bind def +/g {setgray} bind def +/Gshow {show} def % May be redefined later in the file to support UTF-8 +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow {currentpoint stroke M 0 vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def + /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def +/DL {Color {setrgbcolor Solid {pop []} if 0 setdash} + {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def +/BL {stroke userlinewidth 2 mul setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/AL {stroke userlinewidth 2 div setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/UL {dup gnulinewidth mul /userlinewidth exch def + dup 1 lt {pop 1} if 10 mul /udl exch def} def +/PL {stroke userlinewidth setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +3.8 setmiterlimit +% Default Line colors +/LCw {1 1 1} def +/LCb {0 0 0} def +/LCa {0 0 0} def +/LC0 {1 0 0} def +/LC1 {0 1 0} def +/LC2 {0 0 1} def +/LC3 {1 0 1} def +/LC4 {0 1 1} def +/LC5 {1 1 0} def +/LC6 {0 0 0} def +/LC7 {1 0.3 0} def +/LC8 {0.5 0.5 0.5} def +% Default Line Types +/LTw {PL [] 1 setgray} def +/LTb {BL [] LCb DL} def +/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def +/LT0 {PL [] LC0 DL} def +/LT1 {PL [4 dl1 2 dl2] LC1 DL} def +/LT2 {PL [2 dl1 3 dl2] LC2 DL} def +/LT3 {PL [1 dl1 1.5 dl2] LC3 DL} def +/LT4 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def +/LT5 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC5 DL} def +/LT6 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC6 DL} def +/LT7 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC7 DL} def +/LT8 {PL [2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 4 dl2] LC8 DL} def +/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def +/Dia {stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + Pnt} def +/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + Pnt} def +/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke} def +/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + Pnt} def +/Star {2 copy Pls Crs} def +/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath fill} def +/TriUF {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath fill} def +/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke + Pnt} def +/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath fill} def +/DiaF {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath fill} def +/Pent {stroke [] 0 setdash 2 copy gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore Pnt} def +/PentF {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath fill grestore} def +/Circle {stroke [] 0 setdash 2 copy + hpt 0 360 arc stroke Pnt} def +/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def +/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def +/C1 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + vpt 0 360 arc closepath} bind def +/C2 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C3 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C4 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C5 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc + 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc} bind def +/C6 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C7 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C8 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C9 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 450 arc closepath fill + vpt 0 360 arc closepath} bind def +/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill + 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C11 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C12 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C13 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C14 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 360 arc closepath fill + vpt 0 360 arc} bind def +/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath} bind def +/Square {dup Rec} bind def +/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def +/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def +/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def +/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def +/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill + exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def +/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill + Bsquare} bind def +/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill + Bsquare} bind def +/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def +/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def +/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def +/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def +/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def +/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def +/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def +/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def +/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def +/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def +/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def +/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def +/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def +/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def +/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def +/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def +/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def +/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def +/DiaE {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke} def +/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke} def +/TriUE {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke} def +/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke} def +/PentE {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore} def +/CircE {stroke [] 0 setdash + hpt 0 360 arc stroke} def +/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def +/DiaW {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V Opaque stroke} def +/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V Opaque stroke} def +/TriUW {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V Opaque stroke} def +/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V Opaque stroke} def +/PentW {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + Opaque stroke grestore} def +/CircW {stroke [] 0 setdash + hpt 0 360 arc Opaque stroke} def +/BoxFill {gsave Rec 1 setgray fill grestore} def +/Density { + /Fillden exch def + currentrgbcolor + /ColB exch def /ColG exch def /ColR exch def + /ColR ColR Fillden mul Fillden sub 1 add def + /ColG ColG Fillden mul Fillden sub 1 add def + /ColB ColB Fillden mul Fillden sub 1 add def + ColR ColG ColB setrgbcolor} def +/BoxColFill {gsave Rec PolyFill} def +/PolyFill {gsave Density fill grestore grestore} def +/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def +% +% PostScript Level 1 Pattern Fill routine for rectangles +% Usage: x y w h s a XX PatternFill +% x,y = lower left corner of box to be filled +% w,h = width and height of box +% a = angle in degrees between lines and x-axis +% XX = 0/1 for no/yes cross-hatch +% +/PatternFill {gsave /PFa [ 9 2 roll ] def + PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate + PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse + clip + currentlinewidth 0.5 mul setlinewidth + /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def + 0 0 M PFa 5 get rotate PFs -2 div dup translate + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 M 0 PFs V} for + 0 PFa 6 get ne { + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 2 1 roll M PFs 0 V} for + } if + stroke grestore} def +% +/languagelevel where + {pop languagelevel} {1} ifelse + 2 lt + {/InterpretLevel1 true def} + {/InterpretLevel1 Level1 def} + ifelse +% +% PostScript level 2 pattern fill definitions +% +/Level2PatternFill { +/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8} + bind def +/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} +>> matrix makepattern +/Pat1 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke + 0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke} +>> matrix makepattern +/Pat2 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L + 8 8 L 8 0 L 0 0 L fill} +>> matrix makepattern +/Pat3 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L + 0 12 M 12 0 L stroke} +>> matrix makepattern +/Pat4 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L + 0 -4 M 12 8 L stroke} +>> matrix makepattern +/Pat5 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L + 0 12 M 8 -4 L 4 12 M 10 0 L stroke} +>> matrix makepattern +/Pat6 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L + 0 -4 M 8 12 L 4 -4 M 10 8 L stroke} +>> matrix makepattern +/Pat7 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L + 12 0 M -4 8 L 12 4 M 0 10 L stroke} +>> matrix makepattern +/Pat8 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L + -4 0 M 12 8 L -4 4 M 8 10 L stroke} +>> matrix makepattern +/Pat9 exch def +/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def +/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def +/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def +/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def +/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def +/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def +/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def +} def +% +% +%End of PostScript Level 2 code +% +/PatternBgnd { + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse +} def +% +% Substitute for Level 2 pattern fill codes with +% grayscale if Level 2 support is not selected. +% +/Level1PatternFill { +/Pattern1 {0.250 Density} bind def +/Pattern2 {0.500 Density} bind def +/Pattern3 {0.750 Density} bind def +/Pattern4 {0.125 Density} bind def +/Pattern5 {0.375 Density} bind def +/Pattern6 {0.625 Density} bind def +/Pattern7 {0.875 Density} bind def +} def +% +% Now test for support of Level 2 code +% +Level1 {Level1PatternFill} {Level2PatternFill} ifelse +% +/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont +dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall +currentdict end definefont pop +Level1 SuppressPDFMark or +{} { +/SDict 10 dict def +systemdict /pdfmark known not { + userdict /pdfmark systemdict /cleartomark get put +} if +SDict begin [ + /Title (step3.eps) + /Subject (gnuplot plot) + /Creator (gnuplot 4.6 patchlevel 6) + /Author (OcBookPro) +% /Producer (gnuplot) +% /Keywords () + /CreationDate (Fri Feb 6 21:43:11 2015) + /DOCINFO pdfmark +end +} ifelse +end +%%EndProlog +%%Page: 1 1 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1554 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 500) Rshow +1.000 UL +LTb +770 2660 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 3765 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1500) Rshow +1.000 UL +LTb +770 4871 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 2000) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step3.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +1233 448 N +0 336 V +309 0 V +0 -336 V +-309 0 V +Z stroke +1542 448 N +0 3994 V +309 0 V +0 -3994 V +-309 0 V +Z stroke +1851 448 N +0 4231 V +309 0 V +0 -4231 V +-309 0 V +Z stroke +2160 448 N +0 391 V +309 0 V +0 -391 V +-309 0 V +Z stroke +2469 448 N +0 239 V +309 0 V +0 -239 V +-309 0 V +Z stroke +2778 448 N +0 69 V +308 0 V +0 -69 V +-308 0 V +Z stroke +3086 448 N +0 22 V +309 0 V +0 -22 V +-309 0 V +Z stroke +3395 448 N +0 15 V +309 0 V +0 -15 V +-309 0 V +Z stroke +3704 448 N +0 7 V +309 0 V +0 -7 V +-309 0 V +Z stroke +4013 448 N +0 11 V +309 0 V +0 -11 V +-309 0 V +Z stroke +4322 448 N +0 7 V +309 0 V +0 -7 V +-309 0 V +Z stroke +4631 448 N +0 9 V +308 0 V +0 -9 V +-308 0 V +Z stroke +4939 448 N +0 13 V +309 0 V +0 -13 V +-309 0 V +Z stroke +5248 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +5557 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +5866 448 N +0 11 V +309 0 V +0 -11 V +-309 0 V +Z stroke +6175 448 N +0 22 V +309 0 V +0 -22 V +-309 0 V +Z stroke +6484 448 N +0 11 V +309 0 V +0 -11 V +-309 0 V +Z stroke +6793 448 N +0 7 V +154 0 V +0 -7 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Page: 2 2 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1554 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 500) Rshow +1.000 UL +LTb +770 2660 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 3765 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1500) Rshow +1.000 UL +LTb +770 4871 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 2000) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step3.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +1233 448 N +0 336 V +309 0 V +0 -336 V +-309 0 V +Z stroke +1542 448 N +0 3994 V +309 0 V +0 -3994 V +-309 0 V +Z stroke +1851 448 N +0 4231 V +309 0 V +0 -4231 V +-309 0 V +Z stroke +2160 448 N +0 391 V +309 0 V +0 -391 V +-309 0 V +Z stroke +2469 448 N +0 239 V +309 0 V +0 -239 V +-309 0 V +Z stroke +2778 448 N +0 69 V +308 0 V +0 -69 V +-308 0 V +Z stroke +3086 448 N +0 22 V +309 0 V +0 -22 V +-309 0 V +Z stroke +3395 448 N +0 15 V +309 0 V +0 -15 V +-309 0 V +Z stroke +3704 448 N +0 7 V +309 0 V +0 -7 V +-309 0 V +Z stroke +4013 448 N +0 11 V +309 0 V +0 -11 V +-309 0 V +Z stroke +4322 448 N +0 7 V +309 0 V +0 -7 V +-309 0 V +Z stroke +4631 448 N +0 9 V +308 0 V +0 -9 V +-308 0 V +Z stroke +4939 448 N +0 13 V +309 0 V +0 -13 V +-309 0 V +Z stroke +5248 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +5557 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +5866 448 N +0 11 V +309 0 V +0 -11 V +-309 0 V +Z stroke +6175 448 N +0 22 V +309 0 V +0 -22 V +-309 0 V +Z stroke +6484 448 N +0 11 V +309 0 V +0 -11 V +-309 0 V +Z stroke +6793 448 N +0 7 V +154 0 V +0 -7 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Page: 3 3 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1185 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 500) Rshow +1.000 UL +LTb +770 1922 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 2660 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1500) Rshow +1.000 UL +LTb +770 3397 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 2000) Rshow +1.000 UL +LTb +770 4134 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 2500) Rshow +1.000 UL +LTb +770 4871 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 3000) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step4.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +1233 448 N +0 32 V +309 0 V +0 -32 V +-309 0 V +Z stroke +1542 448 N +0 394 V +309 0 V +0 -394 V +-309 0 V +Z stroke +1851 448 N +0 3320 V +309 0 V +0 -3320 V +-309 0 V +Z stroke +2160 448 N +0 3789 V +309 0 V +0 -3789 V +-309 0 V +Z stroke +2469 448 N +0 554 V +309 0 V +0 -554 V +-309 0 V +Z stroke +2778 448 N +0 56 V +308 0 V +0 -56 V +-308 0 V +Z stroke +3086 448 N +0 25 V +309 0 V +0 -25 V +-309 0 V +Z stroke +3395 448 N +0 21 V +309 0 V +0 -21 V +-309 0 V +Z stroke +3704 448 N +0 13 V +309 0 V +0 -13 V +-309 0 V +Z stroke +4013 448 N +0 12 V +309 0 V +0 -12 V +-309 0 V +Z stroke +4322 448 N +0 22 V +309 0 V +0 -22 V +-309 0 V +Z stroke +4631 448 N +0 10 V +308 0 V +0 -10 V +-308 0 V +Z stroke +4939 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +5248 448 N +0 12 V +309 0 V +0 -12 V +-309 0 V +Z stroke +5557 448 N +0 10 V +309 0 V +0 -10 V +-309 0 V +Z stroke +5866 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +6175 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +6484 448 N +0 7 V +309 0 V +0 -7 V +-309 0 V +Z stroke +6793 448 N +0 9 V +154 0 V +0 -9 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Trailer +%%DocumentFonts: Helvetica
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/Test/step4.eps Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,959 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: step4.eps +%%Creator: gnuplot 4.6 patchlevel 6 +%%CreationDate: Fri Feb 6 21:43:45 2015 +%%DocumentFonts: (atend) +%%BoundingBox: 50 50 410 302 +%%EndComments +%%BeginProlog +/gnudict 256 dict def +gnudict begin +% +% The following true/false flags may be edited by hand if desired. +% The unit line width and grayscale image gamma correction may also be changed. +% +/Color false def +/Blacktext false def +/Solid false def +/Dashlength 1 def +/Landscape false def +/Level1 false def +/Rounded false def +/ClipToBoundingBox false def +/SuppressPDFMark false def +/TransparentPatterns false def +/gnulinewidth 5.000 def +/userlinewidth gnulinewidth def +/Gamma 1.0 def +/BackgroundColor {-1.000 -1.000 -1.000} def +% +/vshift -46 def +/dl1 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if +} def +/dl2 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul add } if +} def +/hpt_ 31.5 def +/vpt_ 31.5 def +/hpt hpt_ def +/vpt vpt_ def +/doclip { + ClipToBoundingBox { + newpath 50 50 moveto 410 50 lineto 410 302 lineto 50 302 lineto closepath + clip + } if +} def +% +% Gnuplot Prolog Version 4.6 (September 2012) +% +%/SuppressPDFMark true def +% +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/N {newpath moveto} bind def +/Z {closepath} bind def +/C {setrgbcolor} bind def +/f {rlineto fill} bind def +/g {setgray} bind def +/Gshow {show} def % May be redefined later in the file to support UTF-8 +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow {currentpoint stroke M 0 vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def + /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def +/DL {Color {setrgbcolor Solid {pop []} if 0 setdash} + {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def +/BL {stroke userlinewidth 2 mul setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/AL {stroke userlinewidth 2 div setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/UL {dup gnulinewidth mul /userlinewidth exch def + dup 1 lt {pop 1} if 10 mul /udl exch def} def +/PL {stroke userlinewidth setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +3.8 setmiterlimit +% Default Line colors +/LCw {1 1 1} def +/LCb {0 0 0} def +/LCa {0 0 0} def +/LC0 {1 0 0} def +/LC1 {0 1 0} def +/LC2 {0 0 1} def +/LC3 {1 0 1} def +/LC4 {0 1 1} def +/LC5 {1 1 0} def +/LC6 {0 0 0} def +/LC7 {1 0.3 0} def +/LC8 {0.5 0.5 0.5} def +% Default Line Types +/LTw {PL [] 1 setgray} def +/LTb {BL [] LCb DL} def +/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def +/LT0 {PL [] LC0 DL} def +/LT1 {PL [4 dl1 2 dl2] LC1 DL} def +/LT2 {PL [2 dl1 3 dl2] LC2 DL} def +/LT3 {PL [1 dl1 1.5 dl2] LC3 DL} def +/LT4 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def +/LT5 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC5 DL} def +/LT6 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC6 DL} def +/LT7 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC7 DL} def +/LT8 {PL [2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 4 dl2] LC8 DL} def +/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def +/Dia {stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + Pnt} def +/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + Pnt} def +/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke} def +/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + Pnt} def +/Star {2 copy Pls Crs} def +/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath fill} def +/TriUF {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath fill} def +/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke + Pnt} def +/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath fill} def +/DiaF {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath fill} def +/Pent {stroke [] 0 setdash 2 copy gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore Pnt} def +/PentF {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath fill grestore} def +/Circle {stroke [] 0 setdash 2 copy + hpt 0 360 arc stroke Pnt} def +/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def +/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def +/C1 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + vpt 0 360 arc closepath} bind def +/C2 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C3 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C4 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C5 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc + 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc} bind def +/C6 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C7 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C8 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C9 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 450 arc closepath fill + vpt 0 360 arc closepath} bind def +/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill + 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C11 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C12 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C13 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C14 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 360 arc closepath fill + vpt 0 360 arc} bind def +/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath} bind def +/Square {dup Rec} bind def +/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def +/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def +/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def +/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def +/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill + exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def +/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill + Bsquare} bind def +/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill + Bsquare} bind def +/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def +/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def +/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def +/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def +/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def +/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def +/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def +/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def +/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def +/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def +/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def +/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def +/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def +/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def +/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def +/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def +/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def +/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def +/DiaE {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke} def +/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke} def +/TriUE {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke} def +/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke} def +/PentE {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore} def +/CircE {stroke [] 0 setdash + hpt 0 360 arc stroke} def +/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def +/DiaW {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V Opaque stroke} def +/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V Opaque stroke} def +/TriUW {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V Opaque stroke} def +/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V Opaque stroke} def +/PentW {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + Opaque stroke grestore} def +/CircW {stroke [] 0 setdash + hpt 0 360 arc Opaque stroke} def +/BoxFill {gsave Rec 1 setgray fill grestore} def +/Density { + /Fillden exch def + currentrgbcolor + /ColB exch def /ColG exch def /ColR exch def + /ColR ColR Fillden mul Fillden sub 1 add def + /ColG ColG Fillden mul Fillden sub 1 add def + /ColB ColB Fillden mul Fillden sub 1 add def + ColR ColG ColB setrgbcolor} def +/BoxColFill {gsave Rec PolyFill} def +/PolyFill {gsave Density fill grestore grestore} def +/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def +% +% PostScript Level 1 Pattern Fill routine for rectangles +% Usage: x y w h s a XX PatternFill +% x,y = lower left corner of box to be filled +% w,h = width and height of box +% a = angle in degrees between lines and x-axis +% XX = 0/1 for no/yes cross-hatch +% +/PatternFill {gsave /PFa [ 9 2 roll ] def + PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate + PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse + clip + currentlinewidth 0.5 mul setlinewidth + /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def + 0 0 M PFa 5 get rotate PFs -2 div dup translate + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 M 0 PFs V} for + 0 PFa 6 get ne { + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 2 1 roll M PFs 0 V} for + } if + stroke grestore} def +% +/languagelevel where + {pop languagelevel} {1} ifelse + 2 lt + {/InterpretLevel1 true def} + {/InterpretLevel1 Level1 def} + ifelse +% +% PostScript level 2 pattern fill definitions +% +/Level2PatternFill { +/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8} + bind def +/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} +>> matrix makepattern +/Pat1 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke + 0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke} +>> matrix makepattern +/Pat2 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L + 8 8 L 8 0 L 0 0 L fill} +>> matrix makepattern +/Pat3 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L + 0 12 M 12 0 L stroke} +>> matrix makepattern +/Pat4 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L + 0 -4 M 12 8 L stroke} +>> matrix makepattern +/Pat5 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L + 0 12 M 8 -4 L 4 12 M 10 0 L stroke} +>> matrix makepattern +/Pat6 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L + 0 -4 M 8 12 L 4 -4 M 10 8 L stroke} +>> matrix makepattern +/Pat7 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L + 12 0 M -4 8 L 12 4 M 0 10 L stroke} +>> matrix makepattern +/Pat8 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L + -4 0 M 12 8 L -4 4 M 8 10 L stroke} +>> matrix makepattern +/Pat9 exch def +/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def +/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def +/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def +/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def +/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def +/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def +/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def +} def +% +% +%End of PostScript Level 2 code +% +/PatternBgnd { + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse +} def +% +% Substitute for Level 2 pattern fill codes with +% grayscale if Level 2 support is not selected. +% +/Level1PatternFill { +/Pattern1 {0.250 Density} bind def +/Pattern2 {0.500 Density} bind def +/Pattern3 {0.750 Density} bind def +/Pattern4 {0.125 Density} bind def +/Pattern5 {0.375 Density} bind def +/Pattern6 {0.625 Density} bind def +/Pattern7 {0.875 Density} bind def +} def +% +% Now test for support of Level 2 code +% +Level1 {Level1PatternFill} {Level2PatternFill} ifelse +% +/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont +dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall +currentdict end definefont pop +Level1 SuppressPDFMark or +{} { +/SDict 10 dict def +systemdict /pdfmark known not { + userdict /pdfmark systemdict /cleartomark get put +} if +SDict begin [ + /Title (step4.eps) + /Subject (gnuplot plot) + /Creator (gnuplot 4.6 patchlevel 6) + /Author (OcBookPro) +% /Producer (gnuplot) +% /Keywords () + /CreationDate (Fri Feb 6 21:43:45 2015) + /DOCINFO pdfmark +end +} ifelse +end +%%EndProlog +%%Page: 1 1 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +770 448 M +63 0 V +6114 0 R +-63 0 V +686 448 M +( 0) Rshow +1.000 UL +LTb +770 1185 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 500) Rshow +1.000 UL +LTb +770 1922 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1000) Rshow +1.000 UL +LTb +770 2660 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 1500) Rshow +1.000 UL +LTb +770 3397 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 2000) Rshow +1.000 UL +LTb +770 4134 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 2500) Rshow +1.000 UL +LTb +770 4871 M +63 0 V +6114 0 R +-63 0 V +-6198 0 R +( 3000) Rshow +1.000 UL +LTb +770 448 M +0 63 V +0 4360 R +0 -63 V +770 308 M +( 0) Cshow +1.000 UL +LTb +2005 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3241 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4476 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5712 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3858 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step4.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +1233 448 N +0 32 V +309 0 V +0 -32 V +-309 0 V +Z stroke +1542 448 N +0 394 V +309 0 V +0 -394 V +-309 0 V +Z stroke +1851 448 N +0 3320 V +309 0 V +0 -3320 V +-309 0 V +Z stroke +2160 448 N +0 3789 V +309 0 V +0 -3789 V +-309 0 V +Z stroke +2469 448 N +0 554 V +309 0 V +0 -554 V +-309 0 V +Z stroke +2778 448 N +0 56 V +308 0 V +0 -56 V +-308 0 V +Z stroke +3086 448 N +0 25 V +309 0 V +0 -25 V +-309 0 V +Z stroke +3395 448 N +0 21 V +309 0 V +0 -21 V +-309 0 V +Z stroke +3704 448 N +0 13 V +309 0 V +0 -13 V +-309 0 V +Z stroke +4013 448 N +0 12 V +309 0 V +0 -12 V +-309 0 V +Z stroke +4322 448 N +0 22 V +309 0 V +0 -22 V +-309 0 V +Z stroke +4631 448 N +0 10 V +308 0 V +0 -10 V +-308 0 V +Z stroke +4939 448 N +0 4 V +309 0 V +0 -4 V +-309 0 V +Z stroke +5248 448 N +0 12 V +309 0 V +0 -12 V +-309 0 V +Z stroke +5557 448 N +0 10 V +309 0 V +0 -10 V +-309 0 V +Z stroke +5866 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +6175 448 N +0 9 V +309 0 V +0 -9 V +-309 0 V +Z stroke +6484 448 N +0 7 V +309 0 V +0 -7 V +-309 0 V +Z stroke +6793 448 N +0 9 V +154 0 V +0 -9 V +-154 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +770 4871 N +770 448 L +6177 0 V +0 4423 V +-6177 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Page: 2 2 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +686 448 M +63 0 V +6198 0 R +-63 0 V +602 448 M +( 0) Rshow +1.000 UL +LTb +686 1333 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 100) Rshow +1.000 UL +LTb +686 2217 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 200) Rshow +1.000 UL +LTb +686 3102 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 300) Rshow +1.000 UL +LTb +686 3986 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 400) Rshow +1.000 UL +LTb +686 4871 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 500) Rshow +1.000 UL +LTb +686 448 M +0 63 V +0 4360 R +0 -63 V +686 308 M +( 0) Cshow +1.000 UL +LTb +1938 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3190 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4443 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5695 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +686 4871 N +686 448 L +6261 0 V +0 4423 V +-6261 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3816 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step5.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +1469 448 N +0 9 V +313 0 V +0 -9 V +-313 0 V +Z stroke +1782 448 N +0 389 V +313 0 V +0 -389 V +-313 0 V +Z stroke +2095 448 N +0 2981 V +313 0 V +0 -2981 V +-313 0 V +Z stroke +2408 448 N +0 2309 V +313 0 V +0 -2309 V +-313 0 V +Z stroke +2721 448 N +0 115 V +313 0 V +0 -115 V +-313 0 V +Z stroke +3034 448 N +0 27 V +313 0 V +0 -27 V +-313 0 V +Z stroke +3347 448 N +0 18 V +313 0 V +0 -18 V +-313 0 V +Z stroke +3660 448 N +0 9 V +470 0 V +0 -9 V +-470 0 V +Z stroke +4130 448 N +0 9 V +782 0 V +0 -9 V +-782 0 V +Z stroke +4912 448 N +0 9 V +1096 0 V +0 -9 V +-1096 0 V +Z stroke +6008 448 N +0 9 V +782 0 V +0 -9 V +-782 0 V +Z stroke +6790 448 N +0 9 V +157 0 V +0 -9 V +-157 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +686 4871 N +686 448 L +6261 0 V +0 4423 V +-6261 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Trailer +%%DocumentFonts: Helvetica
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/Test/step5.eps Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,676 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: step5.eps +%%Creator: gnuplot 4.6 patchlevel 6 +%%CreationDate: Fri Feb 6 21:44:03 2015 +%%DocumentFonts: (atend) +%%BoundingBox: 50 50 410 302 +%%EndComments +%%BeginProlog +/gnudict 256 dict def +gnudict begin +% +% The following true/false flags may be edited by hand if desired. +% The unit line width and grayscale image gamma correction may also be changed. +% +/Color false def +/Blacktext false def +/Solid false def +/Dashlength 1 def +/Landscape false def +/Level1 false def +/Rounded false def +/ClipToBoundingBox false def +/SuppressPDFMark false def +/TransparentPatterns false def +/gnulinewidth 5.000 def +/userlinewidth gnulinewidth def +/Gamma 1.0 def +/BackgroundColor {-1.000 -1.000 -1.000} def +% +/vshift -46 def +/dl1 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if +} def +/dl2 { + 10.0 Dashlength mul mul + Rounded { currentlinewidth 0.75 mul add } if +} def +/hpt_ 31.5 def +/vpt_ 31.5 def +/hpt hpt_ def +/vpt vpt_ def +/doclip { + ClipToBoundingBox { + newpath 50 50 moveto 410 50 lineto 410 302 lineto 50 302 lineto closepath + clip + } if +} def +% +% Gnuplot Prolog Version 4.6 (September 2012) +% +%/SuppressPDFMark true def +% +/M {moveto} bind def +/L {lineto} bind def +/R {rmoveto} bind def +/V {rlineto} bind def +/N {newpath moveto} bind def +/Z {closepath} bind def +/C {setrgbcolor} bind def +/f {rlineto fill} bind def +/g {setgray} bind def +/Gshow {show} def % May be redefined later in the file to support UTF-8 +/vpt2 vpt 2 mul def +/hpt2 hpt 2 mul def +/Lshow {currentpoint stroke M 0 vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R + Blacktext {gsave 0 setgray show grestore} {show} ifelse} def +/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def + /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def +/DL {Color {setrgbcolor Solid {pop []} if 0 setdash} + {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def +/BL {stroke userlinewidth 2 mul setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/AL {stroke userlinewidth 2 div setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +/UL {dup gnulinewidth mul /userlinewidth exch def + dup 1 lt {pop 1} if 10 mul /udl exch def} def +/PL {stroke userlinewidth setlinewidth + Rounded {1 setlinejoin 1 setlinecap} if} def +3.8 setmiterlimit +% Default Line colors +/LCw {1 1 1} def +/LCb {0 0 0} def +/LCa {0 0 0} def +/LC0 {1 0 0} def +/LC1 {0 1 0} def +/LC2 {0 0 1} def +/LC3 {1 0 1} def +/LC4 {0 1 1} def +/LC5 {1 1 0} def +/LC6 {0 0 0} def +/LC7 {1 0.3 0} def +/LC8 {0.5 0.5 0.5} def +% Default Line Types +/LTw {PL [] 1 setgray} def +/LTb {BL [] LCb DL} def +/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def +/LT0 {PL [] LC0 DL} def +/LT1 {PL [4 dl1 2 dl2] LC1 DL} def +/LT2 {PL [2 dl1 3 dl2] LC2 DL} def +/LT3 {PL [1 dl1 1.5 dl2] LC3 DL} def +/LT4 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def +/LT5 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC5 DL} def +/LT6 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC6 DL} def +/LT7 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC7 DL} def +/LT8 {PL [2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 4 dl2] LC8 DL} def +/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def +/Dia {stroke [] 0 setdash 2 copy vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke + Pnt} def +/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V + currentpoint stroke M + hpt neg vpt neg R hpt2 0 V stroke + } def +/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke + Pnt} def +/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M + hpt2 vpt2 neg V currentpoint stroke M + hpt2 neg 0 R hpt2 vpt2 V stroke} def +/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke + Pnt} def +/Star {2 copy Pls Crs} def +/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath fill} def +/TriUF {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath fill} def +/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke + Pnt} def +/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath fill} def +/DiaF {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath fill} def +/Pent {stroke [] 0 setdash 2 copy gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore Pnt} def +/PentF {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath fill grestore} def +/Circle {stroke [] 0 setdash 2 copy + hpt 0 360 arc stroke Pnt} def +/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def +/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def +/C1 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + vpt 0 360 arc closepath} bind def +/C2 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C3 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C4 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C5 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc + 2 copy moveto + 2 copy vpt 180 270 arc closepath fill + vpt 0 360 arc} bind def +/C6 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C7 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 270 arc closepath fill + vpt 0 360 arc closepath} bind def +/C8 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C9 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 270 450 arc closepath fill + vpt 0 360 arc closepath} bind def +/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill + 2 copy moveto + 2 copy vpt 90 180 arc closepath fill + vpt 0 360 arc closepath} bind def +/C11 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 180 arc closepath fill + 2 copy moveto + 2 copy vpt 270 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C12 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C13 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 0 90 arc closepath fill + 2 copy moveto + 2 copy vpt 180 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/C14 {BL [] 0 setdash 2 copy moveto + 2 copy vpt 90 360 arc closepath fill + vpt 0 360 arc} bind def +/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill + vpt 0 360 arc closepath} bind def +/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath} bind def +/Square {dup Rec} bind def +/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def +/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def +/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def +/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def +/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill + exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def +/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def +/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def +/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill + Bsquare} bind def +/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill + Bsquare} bind def +/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def +/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy vpt Square fill Bsquare} bind def +/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill + 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def +/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def +/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def +/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def +/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def +/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def +/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def +/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def +/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def +/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def +/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def +/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def +/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def +/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def +/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def +/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def +/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def +/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def +/DiaE {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V closepath stroke} def +/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V closepath stroke} def +/TriUE {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V closepath stroke} def +/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V closepath stroke} def +/PentE {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + closepath stroke grestore} def +/CircE {stroke [] 0 setdash + hpt 0 360 arc stroke} def +/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def +/DiaW {stroke [] 0 setdash vpt add M + hpt neg vpt neg V hpt vpt neg V + hpt vpt V hpt neg vpt V Opaque stroke} def +/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M + 0 vpt2 neg V hpt2 0 V 0 vpt2 V + hpt2 neg 0 V Opaque stroke} def +/TriUW {stroke [] 0 setdash vpt 1.12 mul add M + hpt neg vpt -1.62 mul V + hpt 2 mul 0 V + hpt neg vpt 1.62 mul V Opaque stroke} def +/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M + hpt neg vpt 1.62 mul V + hpt 2 mul 0 V + hpt neg vpt -1.62 mul V Opaque stroke} def +/PentW {stroke [] 0 setdash gsave + translate 0 hpt M 4 {72 rotate 0 hpt L} repeat + Opaque stroke grestore} def +/CircW {stroke [] 0 setdash + hpt 0 360 arc Opaque stroke} def +/BoxFill {gsave Rec 1 setgray fill grestore} def +/Density { + /Fillden exch def + currentrgbcolor + /ColB exch def /ColG exch def /ColR exch def + /ColR ColR Fillden mul Fillden sub 1 add def + /ColG ColG Fillden mul Fillden sub 1 add def + /ColB ColB Fillden mul Fillden sub 1 add def + ColR ColG ColB setrgbcolor} def +/BoxColFill {gsave Rec PolyFill} def +/PolyFill {gsave Density fill grestore grestore} def +/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def +% +% PostScript Level 1 Pattern Fill routine for rectangles +% Usage: x y w h s a XX PatternFill +% x,y = lower left corner of box to be filled +% w,h = width and height of box +% a = angle in degrees between lines and x-axis +% XX = 0/1 for no/yes cross-hatch +% +/PatternFill {gsave /PFa [ 9 2 roll ] def + PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate + PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse + clip + currentlinewidth 0.5 mul setlinewidth + /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def + 0 0 M PFa 5 get rotate PFs -2 div dup translate + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 M 0 PFs V} for + 0 PFa 6 get ne { + 0 1 PFs PFa 4 get div 1 add floor cvi + {PFa 4 get mul 0 2 1 roll M PFs 0 V} for + } if + stroke grestore} def +% +/languagelevel where + {pop languagelevel} {1} ifelse + 2 lt + {/InterpretLevel1 true def} + {/InterpretLevel1 Level1 def} + ifelse +% +% PostScript level 2 pattern fill definitions +% +/Level2PatternFill { +/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8} + bind def +/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} +>> matrix makepattern +/Pat1 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke + 0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke} +>> matrix makepattern +/Pat2 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L + 8 8 L 8 0 L 0 0 L fill} +>> matrix makepattern +/Pat3 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L + 0 12 M 12 0 L stroke} +>> matrix makepattern +/Pat4 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L + 0 -4 M 12 8 L stroke} +>> matrix makepattern +/Pat5 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L + 0 12 M 8 -4 L 4 12 M 10 0 L stroke} +>> matrix makepattern +/Pat6 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L + 0 -4 M 8 12 L 4 -4 M 10 8 L stroke} +>> matrix makepattern +/Pat7 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L + 12 0 M -4 8 L 12 4 M 0 10 L stroke} +>> matrix makepattern +/Pat8 exch def +<< Tile8x8 + /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L + -4 0 M 12 8 L -4 4 M 8 10 L stroke} +>> matrix makepattern +/Pat9 exch def +/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def +/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def +/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def +/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def +/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def +/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def +/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def +} def +% +% +%End of PostScript Level 2 code +% +/PatternBgnd { + TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse +} def +% +% Substitute for Level 2 pattern fill codes with +% grayscale if Level 2 support is not selected. +% +/Level1PatternFill { +/Pattern1 {0.250 Density} bind def +/Pattern2 {0.500 Density} bind def +/Pattern3 {0.750 Density} bind def +/Pattern4 {0.125 Density} bind def +/Pattern5 {0.375 Density} bind def +/Pattern6 {0.625 Density} bind def +/Pattern7 {0.875 Density} bind def +} def +% +% Now test for support of Level 2 code +% +Level1 {Level1PatternFill} {Level2PatternFill} ifelse +% +/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont +dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall +currentdict end definefont pop +Level1 SuppressPDFMark or +{} { +/SDict 10 dict def +systemdict /pdfmark known not { + userdict /pdfmark systemdict /cleartomark get put +} if +SDict begin [ + /Title (step5.eps) + /Subject (gnuplot plot) + /Creator (gnuplot 4.6 patchlevel 6) + /Author (OcBookPro) +% /Producer (gnuplot) +% /Keywords () + /CreationDate (Fri Feb 6 21:44:03 2015) + /DOCINFO pdfmark +end +} ifelse +end +%%EndProlog +%%Page: 1 1 +gnudict begin +gsave +doclip +50 50 translate +0.050 0.050 scale +0 setgray +newpath +(Helvetica) findfont 140 scalefont setfont +BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if +/Helvetica findfont 140 scalefont setfont +/vshift -46 def +1.000 UL +LTb +686 448 M +63 0 V +6198 0 R +-63 0 V +602 448 M +( 0) Rshow +1.000 UL +LTb +686 1333 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 100) Rshow +1.000 UL +LTb +686 2217 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 200) Rshow +1.000 UL +LTb +686 3102 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 300) Rshow +1.000 UL +LTb +686 3986 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 400) Rshow +1.000 UL +LTb +686 4871 M +63 0 V +6198 0 R +-63 0 V +-6282 0 R +( 500) Rshow +1.000 UL +LTb +686 448 M +0 63 V +0 4360 R +0 -63 V +686 308 M +( 0) Cshow +1.000 UL +LTb +1938 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 2) Cshow +1.000 UL +LTb +3190 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 4) Cshow +1.000 UL +LTb +4443 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 6) Cshow +1.000 UL +LTb +5695 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 8) Cshow +1.000 UL +LTb +6947 448 M +0 63 V +0 4360 R +0 -63 V +0 -4500 R +( 10) Cshow +1.000 UL +LTb +1.000 UL +LTb +686 4871 N +686 448 L +6261 0 V +0 4423 V +-6261 0 V +Z stroke +LCb setrgbcolor +112 2659 M +currentpoint gsave translate -270 rotate 0 0 M +(node number) Cshow +grestore +LTb +LCb setrgbcolor +3816 98 M +(delay time\(ms\)) Cshow +LTb +1.000 UP +1.000 UL +LTb +% Begin plot #1 +1.000 UL +LT0 +/Helvetica findfont 140 scalefont setfont +LCb setrgbcolor +6296 4738 M +('log_step5.dat') Rshow +LT0 +6380 4703 N +399 0 V +0 70 V +-399 0 V +0 -70 V +Z stroke +1469 448 N +0 9 V +313 0 V +0 -9 V +-313 0 V +Z stroke +1782 448 N +0 389 V +313 0 V +0 -389 V +-313 0 V +Z stroke +2095 448 N +0 2981 V +313 0 V +0 -2981 V +-313 0 V +Z stroke +2408 448 N +0 2309 V +313 0 V +0 -2309 V +-313 0 V +Z stroke +2721 448 N +0 115 V +313 0 V +0 -115 V +-313 0 V +Z stroke +3034 448 N +0 27 V +313 0 V +0 -27 V +-313 0 V +Z stroke +3347 448 N +0 18 V +313 0 V +0 -18 V +-313 0 V +Z stroke +3660 448 N +0 9 V +470 0 V +0 -9 V +-470 0 V +Z stroke +4130 448 N +0 9 V +782 0 V +0 -9 V +-782 0 V +Z stroke +4912 448 N +0 9 V +1096 0 V +0 -9 V +-1096 0 V +Z stroke +6008 448 N +0 9 V +782 0 V +0 -9 V +-782 0 V +Z stroke +6790 448 N +0 9 V +157 0 V +0 -9 V +-157 0 V +Z stroke +% End plot #1 +1.000 UL +LTb +686 4871 N +686 448 L +6261 0 V +0 4423 V +-6261 0 V +Z stroke +1.000 UP +1.000 UL +LTb +stroke +grestore +end +showpage +%%Trailer +%%DocumentFonts: Helvetica
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter2/TreeVNC.graffle Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,750 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>ActiveLayerIndex</key> + <integer>0</integer> + <key>ApplicationVersion</key> + <array> + <string>com.omnigroup.OmniGraffle6</string> + <string>156.11.0.206384</string> + </array> + <key>AutoAdjust</key> + <true/> + <key>BackgroundGraphic</key> + <dict> + <key>Bounds</key> + <string>{{0, 0}, {558.99997329711914, 783}}</string> + <key>Class</key> + <string>SolidGraphic</string> + <key>ID</key> + <integer>2</integer> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + </dict> + <key>BaseZoom</key> + <integer>0</integer> + <key>CanvasOrigin</key> + <string>{0, 0}</string> + <key>ColumnAlign</key> + <integer>1</integer> + <key>ColumnSpacing</key> + <real>36</real> + <key>Creator</key> + <string>Miwa Oshiro</string> + <key>DisplayScale</key> + <string>1 in = 1.00000 in</string> + <key>GraphDocumentVersion</key> + <integer>11</integer> + <key>GraphicsList</key> + <array> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>149</integer> + </dict> + <key>ID</key> + <integer>156</integer> + <key>Points</key> + <array> + <string>{324.56491040537867, 149.1418545390502}</string> + <string>{432.80772726990051, 149.1418545390502}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>143</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>148</integer> + </dict> + <key>ID</key> + <integer>155</integer> + <key>Points</key> + <array> + <string>{391.63542644936047, 238.07205289375841}</string> + <string>{362.92316403503696, 326.25813508080068}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>145</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>147</integer> + </dict> + <key>ID</key> + <integer>154</integer> + <key>Points</key> + <array> + <string>{257.82544878260654, 238.07205289375841}</string> + <string>{293.5803416004436, 326.25813508080068}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>144</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>146</integer> + </dict> + <key>ID</key> + <integer>153</integer> + <key>Points</key> + <array> + <string>{257.82544878260654, 238.07205289375841}</string> + <string>{210.15225835882376, 326.25813508080068}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>144</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>145</integer> + </dict> + <key>ID</key> + <integer>152</integer> + <key>Points</key> + <array> + <string>{324.56491040537867, 149.1418545390502}</string> + <string>{391.63542644936047, 238.07205289375841}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>143</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>144</integer> + </dict> + <key>ID</key> + <integer>151</integer> + <key>Points</key> + <array> + <string>{324.56491040537867, 149.1418545390502}</string> + <string>{257.82544878260654, 238.07205289375841}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>143</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{404.09546485557678, 120.43999755382541}, {57.424524828647513, 57.40371397044958}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>149</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 VNC\ +Server}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{334.21090162071323, 297.55627809557592}, {57.424524828647513, 57.40371397044958}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>148</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node5}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{264.86807918611987, 297.55627809557592}, {57.424524828647513, 57.40371397044958}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>147</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node4}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{181.4399959445, 297.55627809557592}, {57.424524828647513, 57.40371397044958}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>146</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node3}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{362.92316403503673, 209.37019590853362}, {57.424524828647513, 57.40371397044958}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>145</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node2}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{229.11318636828278, 209.37019590853362}, {57.424524828647513, 57.40371397044958}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>144</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node1}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{295.85264799105494, 120.43999755382541}, {57.424524828647513, 57.40371397044958}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>143</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Root\ +Node}</string> + </dict> + </dict> + </array> + <key>GridInfo</key> + <dict/> + <key>GuidesLocked</key> + <string>NO</string> + <key>GuidesVisible</key> + <string>YES</string> + <key>HPages</key> + <integer>1</integer> + <key>ImageCounter</key> + <integer>1</integer> + <key>KeepToScale</key> + <false/> + <key>Layers</key> + <array> + <dict> + <key>Lock</key> + <string>NO</string> + <key>Name</key> + <string>レイヤー 1</string> + <key>Print</key> + <string>YES</string> + <key>View</key> + <string>YES</string> + </dict> + </array> + <key>LayoutInfo</key> + <dict> + <key>Animate</key> + <string>NO</string> + <key>circoMinDist</key> + <real>18</real> + <key>circoSeparation</key> + <real>0.0</real> + <key>layoutEngine</key> + <string>dot</string> + <key>neatoLineLength</key> + <real>0.20000000298023224</real> + <key>neatoSeparation</key> + <real>0.0</real> + <key>twopiSeparation</key> + <real>0.0</real> + </dict> + <key>LinksVisible</key> + <string>NO</string> + <key>MagnetsVisible</key> + <string>NO</string> + <key>MasterSheets</key> + <array/> + <key>ModificationDate</key> + <string>2014-10-29 午前1:51:09 +0000</string> + <key>Modifier</key> + <string>大城美和</string> + <key>NotesVisible</key> + <string>NO</string> + <key>Orientation</key> + <integer>2</integer> + <key>OriginVisible</key> + <string>NO</string> + <key>PageBreaks</key> + <string>YES</string> + <key>PrintInfo</key> + <dict> + <key>NSBottomMargin</key> + <array> + <string>float</string> + <string>41</string> + </array> + <key>NSHorizonalPagination</key> + <array> + <string>coded</string> + <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string> + </array> + <key>NSLeftMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + <key>NSPaperSize</key> + <array> + <string>size</string> + <string>{594.99997329711914, 842}</string> + </array> + <key>NSPrintReverseOrientation</key> + <array> + <string>coded</string> + <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string> + </array> + <key>NSRightMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + <key>NSTopMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + </dict> + <key>PrintOnePage</key> + <false/> + <key>ReadOnly</key> + <string>NO</string> + <key>RowAlign</key> + <integer>1</integer> + <key>RowSpacing</key> + <real>36</real> + <key>SheetTitle</key> + <string>キャンバス 1</string> + <key>SmartAlignmentGuidesActive</key> + <string>YES</string> + <key>SmartDistanceGuidesActive</key> + <string>YES</string> + <key>UniqueID</key> + <integer>1</integer> + <key>UseEntirePage</key> + <false/> + <key>VPages</key> + <integer>1</integer> + <key>WindowInfo</key> + <dict> + <key>BottomSlabHeight</key> + <real>580</real> + <key>CurrentSheet</key> + <integer>0</integer> + <key>Expanded_Canvases</key> + <array/> + <key>Frame</key> + <string>{{489, 130}, {1166, 927}}</string> + <key>ShowInfo</key> + <true/> + <key>ShowRuler</key> + <true/> + <key>Sidebar</key> + <true/> + <key>SidebarWidth</key> + <integer>230</integer> + <key>VisibleRegion</key> + <string>{{-22, 0}, {604, 782}}</string> + <key>Zoom</key> + <real>1</real> + <key>ZoomValues</key> + <array> + <array> + <string>キャンバス 1</string> + <real>1</real> + <real>1</real> + </array> + </array> + </dict> +</dict> +</plist>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter2/TreeVNC.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./TreeVNC.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 455 386 +%%HiResBoundingBox: 0.000000 0.000000 454.500000 385.500000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sat Jan 24 19:27:44 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter2/rfbprotocol.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./rfbprotocol.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 441 662 +%%HiResBoundingBox: 0.000000 0.000000 441.000000 662.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 17:20:41 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter3/LostParent.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./LostParent.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 449 288 +%%HiResBoundingBox: 0.000000 0.000000 449.000000 288.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 13:05:09 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter3/MultiNetworkTree.graffle Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,1459 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>ActiveLayerIndex</key> + <integer>0</integer> + <key>ApplicationVersion</key> + <array> + <string>com.omnigroup.OmniGraffle6</string> + <string>156.11.0.206384</string> + </array> + <key>AutoAdjust</key> + <true/> + <key>BackgroundGraphic</key> + <dict> + <key>Bounds</key> + <string>{{0, 0}, {559, 783}}</string> + <key>Class</key> + <string>SolidGraphic</string> + <key>ID</key> + <integer>2</integer> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + </dict> + <key>BaseZoom</key> + <integer>0</integer> + <key>CanvasOrigin</key> + <string>{0, 0}</string> + <key>ColumnAlign</key> + <integer>1</integer> + <key>ColumnSpacing</key> + <real>36</real> + <key>Creator</key> + <string>Miwa Oshiro</string> + <key>DisplayScale</key> + <string>1 in = 1.00000 in</string> + <key>GraphDocumentVersion</key> + <integer>11</integer> + <key>GraphicsList</key> + <array> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>192</integer> + <key>Position</key> + <real>0.76786974194670188</real> + </dict> + <key>ID</key> + <integer>194</integer> + <key>Points</key> + <array> + <string>{435.37512100993843, 338.6805437293026}</string> + <string>{436.26157744075232, 285.55066547050831}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>157</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>192</integer> + <key>Points</key> + <array> + <string>{306.2811877235431, 241.03055527253258}</string> + <string>{316.15177213752139, 285.55066547050831}</string> + <string>{479.63350474628362, 285.55066547050831}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>170</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{140.1395778240757, 258.03426088495445}, {34.260062612122454, 24.586579817345417}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Size</key> + <real>16</real> + </dict> + <key>ID</key> + <integer>185</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} +{\colortbl;\red255\green255\blue255;} +\deftab720 +\pard\pardeftab720\qc + +\f0\fs32 \cf0 en0}</string> + </dict> + <key>Wrap</key> + <string>NO</string> + </dict> + <dict> + <key>Bounds</key> + <string>{{455.57498237853042, 258.2187689710031}, {34.260062612122454, 24.586579817345417}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Size</key> + <real>16</real> + </dict> + <key>ID</key> + <integer>183</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} +{\colortbl;\red255\green255\blue255;} +\deftab720 +\pard\pardeftab720\qc + +\f0\fs32 \cf0 en1}</string> + </dict> + <key>Wrap</key> + <string>NO</string> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>173</integer> + <key>Position</key> + <real>0.67108693895057814</real> + </dict> + <key>ID</key> + <integer>179</integer> + <key>Points</key> + <array> + <string>{198.70290998488051, 338.39340917299131}</string> + <string>{197.72490185167592, 285.29986347999579}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>143</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>173</integer> + <key>Points</key> + <array> + <string>{306.2811877235431, 241.03055527253258}</string> + <string>{296.04894544246974, 285.6215608687304}</string> + <string>{138.01461683073296, 285.10450289401564}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>170</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{282.0188527441851, 218.87999510765079}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>170</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Root\ +Node}</string> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>162</integer> + </dict> + <key>ID</key> + <integer>168</integer> + <key>Points</key> + <array> + <string>{492.05081253209755, 407.31212077830179}</string> + <string>{467.78847755273955, 475.36942871467932}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>159</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>161</integer> + </dict> + <key>ID</key> + <integer>167</integer> + <key>Points</key> + <array> + <string>{378.97917593018394, 407.31212077830179}</string> + <string>{409.19264967806379, 475.36942871467932}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>158</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>160</integer> + </dict> + <key>ID</key> + <integer>166</integer> + <key>Points</key> + <array> + <string>{378.97917593018394, 407.31212077830179}</string> + <string>{338.69454426634434, 475.36942871467932}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>158</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>159</integer> + </dict> + <key>ID</key> + <integer>165</integer> + <key>Points</key> + <array> + <string>{435.37512100993843, 338.6805437293026}</string> + <string>{492.05081253209755, 407.31212077830179}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>157</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>158</integer> + </dict> + <key>ID</key> + <integer>164</integer> + <key>Points</key> + <array> + <string>{435.37512100993843, 338.6805437293026}</string> + <string>{378.97917593018394, 407.31212077830179}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>157</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{443.52614257338155, 453.21886854979755}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>162</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node5}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{384.93031469870579, 453.21886854979755}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>161</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node4}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{314.43220928698634, 453.21886854979755}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>160</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node3}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{467.78847755273955, 385.16156061342002}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>159</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node2}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{354.71684095082594, 385.16156061342002}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>158</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node1}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{411.11278603058042, 316.52998356442083}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>157</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Pattern</key> + <integer>1</integer> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Root\ +Node}</string> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>148</integer> + </dict> + <key>ID</key> + <integer>155</integer> + <key>Points</key> + <array> + <string>{255.37860150703978, 407.02498622199124}</string> + <string>{231.11626652768177, 475.08229415836848}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>145</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>147</integer> + </dict> + <key>ID</key> + <integer>154</integer> + <key>Points</key> + <array> + <string>{142.30696490512614, 407.02498622199124}</string> + <string>{172.52043865300573, 475.08229415836848}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>144</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>146</integer> + </dict> + <key>ID</key> + <integer>153</integer> + <key>Points</key> + <array> + <string>{142.30696490512614, 407.02498622199124}</string> + <string>{102.02233324128645, 475.08229415836848}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>144</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>145</integer> + </dict> + <key>ID</key> + <integer>152</integer> + <key>Points</key> + <array> + <string>{198.70290998488051, 338.39340917299131}</string> + <string>{255.37860150703978, 407.02498622199124}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>143</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>Head</key> + <dict> + <key>ID</key> + <integer>144</integer> + </dict> + <key>ID</key> + <integer>151</integer> + <key>Points</key> + <array> + <string>{198.70290998488051, 338.39340917299131}</string> + <string>{142.30696490512614, 407.02498622199124}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <false/> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>143</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{206.85393154832377, 452.93173399348672}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>148</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node5}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{148.25810367364772, 452.93173399348672}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>147</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node4}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{77.759998261928445, 452.93173399348672}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>146</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node3}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{231.11626652768177, 384.87442605710947}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>145</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node2}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{118.04462992576813, 384.87442605710947}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>144</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node1}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{174.4405750055225, 316.24284900810954}, {48.52466995871599, 44.30112032976357}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FontInfo</key> + <dict> + <key>Color</key> + <dict> + <key>w</key> + <string>0</string> + </dict> + <key>Font</key> + <string>Helvetica</string> + <key>Size</key> + <real>12</real> + </dict> + <key>ID</key> + <integer>143</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Pattern</key> + <integer>1</integer> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg932\cocoartf1343\cocoasubrtf140 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Root\ +Node}</string> + </dict> + </dict> + </array> + <key>GridInfo</key> + <dict/> + <key>GuidesLocked</key> + <string>NO</string> + <key>GuidesVisible</key> + <string>YES</string> + <key>HPages</key> + <integer>1</integer> + <key>ImageCounter</key> + <integer>1</integer> + <key>KeepToScale</key> + <false/> + <key>Layers</key> + <array> + <dict> + <key>Lock</key> + <string>NO</string> + <key>Name</key> + <string>レイヤー 1</string> + <key>Print</key> + <string>YES</string> + <key>View</key> + <string>YES</string> + </dict> + </array> + <key>LayoutInfo</key> + <dict> + <key>Animate</key> + <string>NO</string> + <key>circoMinDist</key> + <real>18</real> + <key>circoSeparation</key> + <real>0.0</real> + <key>layoutEngine</key> + <string>dot</string> + <key>neatoLineLength</key> + <real>0.20000000298023224</real> + <key>neatoSeparation</key> + <real>0.0</real> + <key>twopiSeparation</key> + <real>0.0</real> + </dict> + <key>LinksVisible</key> + <string>NO</string> + <key>MagnetsVisible</key> + <string>NO</string> + <key>MasterSheets</key> + <array/> + <key>ModificationDate</key> + <string>2014-10-29 午前1:52:34 +0000</string> + <key>Modifier</key> + <string>大城美和</string> + <key>NotesVisible</key> + <string>NO</string> + <key>Orientation</key> + <integer>2</integer> + <key>OriginVisible</key> + <string>NO</string> + <key>PageBreaks</key> + <string>YES</string> + <key>PrintInfo</key> + <dict> + <key>NSBottomMargin</key> + <array> + <string>float</string> + <string>41</string> + </array> + <key>NSHorizonalPagination</key> + <array> + <string>coded</string> + <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string> + </array> + <key>NSLeftMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + <key>NSPaperSize</key> + <array> + <string>size</string> + <string>{595, 842}</string> + </array> + <key>NSPrintReverseOrientation</key> + <array> + <string>coded</string> + <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string> + </array> + <key>NSPrinter</key> + <array> + <string>coded</string> + <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAlOU1ByaW50ZXIAhIQITlNPYmplY3QAhZKEhIQITlNTdHJpbmcBlIQBKwEghoY=</string> + </array> + <key>NSPrinterName</key> + <array> + <string>string</string> + <string> </string> + </array> + <key>NSRightMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + <key>NSTopMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + </dict> + <key>PrintOnePage</key> + <false/> + <key>ReadOnly</key> + <string>NO</string> + <key>RowAlign</key> + <integer>1</integer> + <key>RowSpacing</key> + <real>36</real> + <key>SheetTitle</key> + <string>キャンバス 1</string> + <key>SmartAlignmentGuidesActive</key> + <string>YES</string> + <key>SmartDistanceGuidesActive</key> + <string>YES</string> + <key>UniqueID</key> + <integer>1</integer> + <key>UseEntirePage</key> + <false/> + <key>VPages</key> + <integer>1</integer> + <key>WindowInfo</key> + <dict> + <key>BottomSlabHeight</key> + <real>580</real> + <key>CurrentSheet</key> + <integer>0</integer> + <key>Expanded_Canvases</key> + <array/> + <key>Frame</key> + <string>{{505, 130}, {1356, 927}}</string> + <key>ShowInfo</key> + <true/> + <key>ShowRuler</key> + <true/> + <key>Sidebar</key> + <true/> + <key>SidebarWidth</key> + <integer>230</integer> + <key>VisibleRegion</key> + <string>{{-65, 0}, {690.43478260869574, 680.00000000000011}}</string> + <key>Zoom</key> + <real>1.1499999999999999</real> + <key>ZoomValues</key> + <array> + <array> + <string>キャンバス 1</string> + <real>1.1499999999999999</real> + <real>1.3100000000000001</real> + </array> + </array> + </dict> +</dict> +</plist>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter3/MultiNetworkTree.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./MultiNetworkTree.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 693 453 +%%HiResBoundingBox: 0.000000 0.000000 693.000000 453.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 13:05:09 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter3/lostChild1.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./lostChild1.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 365 284 +%%HiResBoundingBox: 0.000000 0.000000 365.000000 284.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 13:05:43 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter3/lostChild2.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./lostChild2.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 410 279 +%%HiResBoundingBox: 0.000000 0.000000 410.000000 279.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 13:05:25 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter4/flameDisplaySizeFilterVer.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./flameDisplaySizeFilterVer.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 886 367 +%%HiResBoundingBox: 0.000000 0.000000 886.000000 367.000000 +%%PDFVersion: 1.4 +%%Pages: 1 +%%CreationDate: Sun Feb 8 01:06:31 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter4/flameDisplaySizeTimerVer.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./flameDisplaySizeTimerVer.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 723 367 +%%HiResBoundingBox: 0.000000 0.000000 723.000000 367.000000 +%%PDFVersion: 1.4 +%%Pages: 1 +%%CreationDate: Sun Feb 8 01:06:31 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter4/remoteNetwork.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./remoteNetwork.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 513 587 +%%HiResBoundingBox: 0.000000 0.000000 513.000000 587.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 00:21:49 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter4/remoteNetwork2.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./remoteNetwork2.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 532 652 +%%HiResBoundingBox: 0.000000 0.000000 532.000000 652.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 00:21:49 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter4/remoteNetwork3.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./remoteNetwork3.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 516 621 +%%HiResBoundingBox: 0.000000 0.000000 516.000000 621.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 00:21:49 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter4/remoteNetwork4.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./remoteNetwork4.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 532 688 +%%HiResBoundingBox: 0.000000 0.000000 532.000000 688.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 00:21:49 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/images/chapter4/sendInitData.xbb Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,8 @@ +%%Title: ./sendInitData.pdf +%%Creator: extractbb 20140317 +%%BoundingBox: 0 0 366 416 +%%HiResBoundingBox: 0.000000 0.000000 366.000000 416.000000 +%%PDFVersion: 1.3 +%%Pages: 1 +%%CreationDate: Sun Feb 8 01:06:36 2015 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jlisting.sty Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,216 @@ +\NeedsTeXFormat{LaTeX2e} +\def\filedate{2006/02/20} +\def\fileversion{0.2} +\ProvidesPackage{jlisting}[\filedate\space\fileversion\space(Thor)] +% +\newcount\lst@nextchar +\let\lst@@ProcessSpace\lst@ProcessSpace +\def\lst@ProcessSpace#1{% + \lst@check@chartype{#1}% + \lst@@ProcessSpace + \lst@whitespacetrue} +\let\lst@@ProcessLetter\lst@ProcessLetter +\def\lst@ProcessLetter#1#2{% + \lst@check@chartype{#2}% + {\lst@@ProcessLetter{#1}}% + \relax} +\let\lst@@ProcessDigit\lst@ProcessDigit +\def\lst@ProcessDigit#1#2{% + \lst@check@chartype{#2}% + {\lst@@ProcessDigit{#1}}% + \relax} +\let\lst@@ProcessOther\lst@ProcessOther +\def\lst@ProcessOther#1#2{% + \lst@check@chartype{#2}% + {\lst@@ProcessOther{#1}}% + \relax} +\let\lst@@ProcessTabulator\lst@ProcessTabulator +\def\lst@ProcessTabulator#1{% + \lst@check@chartype{#1}% + \lst@@ProcessTabulator + \relax} +\def\lst@check@chartype#1#2#3{% + \edef\@tempa{\lst@nextchar=`\string#1\relax}% + \afterassignment\remove@to@nnil + \@tempa\@nnil + #2% + \ifnum\lst@nextchar<\@cclvi + #3% + \else + \lst@ifletter \else \lst@OutputOther \fi + \lst@whitespacefalse + \expandafter\lst@AppendJchar + \fi + #1} +\def\lst@AppendJchar#1#2{% + \lst@check@chartype{#2}% + {\advance\lst@length\@ne\lst@Append{#1}}% + \relax} +\def\lst@check@chartype@BOL#1{% + \edef\@tempa{\lst@nextchar=`\string#1\relax}% + \afterassignment\remove@to@nnil + \@tempa\@nnil + \ifnum\lst@nextchar<\@cclvi\else + \lst@whitespacefalse + \expandafter\lst@AppendJchar + \fi + #1} +\def\lst@InputListing#1{% + \begingroup + \lsthk@PreSet \gdef\lst@intname{#1}% + \expandafter\lstset\expandafter{\lst@set}% + \lsthk@DisplayStyle + \catcode\active=\active + \lst@Init\relax \let\lst@gobble\z@ + \lst@SkipToFirst + \lst@ifprint \def\lst@next{\lst@get@filecontents{#1}}% + \else \let\lst@next\@empty + \fi + \lst@next + \lst@DeInit + \endgroup} +\newread\lst@inputfile +\def\lst@get@filecontents#1{% + \let\lst@filecontents\@empty + \openin\lst@inputfile=#1\relax + \let\@lst@get@filecontents@prevline\relax + \lst@get@filecontents@loop + \closein\lst@inputfile + \lst@filecontents\empty} +\def\lst@get@filecontents@loop{% + \read\lst@inputfile to\@lst@get@filecontents@currline + \ifx\@lst@get@filecontents@prevline\relax\else + \expandafter\expandafter\expandafter\def + \expandafter\expandafter\expandafter\lst@filecontents + \expandafter\expandafter\expandafter{% + \expandafter\lst@filecontents\@lst@get@filecontents@prevline}% + \fi + \let\@lst@get@filecontents@prevline\@lst@get@filecontents@currline + \ifeof\lst@inputfile\else + \expandafter\lst@get@filecontents@loop + \fi} +%%% [$B$3$N=hM}$b!$AjEv6/0z$G$9!%(B] +\def\lst@BOLGobble{% + \ifnum\lst@gobble>\z@ + \@tempcnta\lst@gobble\relax + \expandafter\lst@BOLGobble@ + \else + \expandafter\lst@check@chartype@BOL + \fi} +\def\lst@BOLGobble@#1{% + \let\lst@next#1% + \ifx \lst@next\relax\else + \ifx \lst@next\lst@MProcessListing\else + \ifx \lst@next\lst@ProcessFormFeed\else + \ifx \lst@next\lstenv@backslash + \let\lst@next\lstenv@BOLGobble@@ + \else + \let\lst@next\lst@BOLGobble@@ + \ifx #1\lst@ProcessTabulator + \advance\@tempcnta-\lst@tabsize\relax + \ifnum\@tempcnta<\z@ + \lst@length-\@tempcnta \lst@PreGotoTabStop + \fi + \else + \edef\@tempa{\lst@nextchar=`\string#1\relax}% + \@tempa + \ifnum\lst@nextchar<\@cclvi\else + \advance\@tempcnta\m@ne + \fi + \advance\@tempcnta\m@ne + \fi + \fi \fi \fi \fi + \lst@next} +\def\lst@BOLGobble@@{% + \ifnum\@tempcnta>\z@ + \expandafter\lst@BOLGobble@ + \else + \expandafter\lst@check@chartype@BOL + \fi +} +% +% \begin{$B=$@5;v9`(B}{1.3} +% $B$A$g$C$H$7$?=$@5(B +\gdef\lst@breakProcessOther#1{\lst@ProcessOther#1} +% $B%=!<%9%3!<%IL\<!$K$*$1$kJ8;z$HHV9f$N6u$-(B +\let \l@lstlisting = \l@figure +% $B%-%c%W%7%g%s$H%=!<%9%3!<%IL\<!$KBP$9$kF|K\8lBP1~(B +\def\lstlistingname{$B%=!<%9%3!<%I(B} +\def\lstlistlistingname{$B%=!<%9%3!<%IL\<!(B} +% \end{$B=$@5;v9`(B} +\endinput +% +%#!platex +\documentclass[papersize]{jsarticle} +% Macros +\IfFileExists{dvipdfmx.def}{% + \usepackage[dvipdfmx]{color,graphicx}% +}{% + \usepackage[dvipdfm]{color,graphicx}% +} +\usepackage{listings}[2004/09/07] +\usepackage{jlisting}[2006/02/20] +\usepackage{url} +\usepackage{verbatim} + +\makeatletter +% Original Macros +\def\email#1{\gdef\@email{\texttt{#1}}} +\def\homepage#1{\gdef\@homepage{\texttt{#1}}} +\def\mac#1{\textsf{#1}} +\def\URL#1{\texttt{#1}} +\def\src#1{\texttt{#1}} + +% Dvipdfmx.def +\def\dvipdfmxDefi{http://tex.dante.jp/ok/dvipdfmx/} +\def\dvipdfmxDefii{http://ftp.ktug.or.kr/KTUG/dvipdfmx/contrib/latex/} + +\IfFileExists{dvipdfmx.def}{% + \let \IfDvipdfmxDef = \empty \relax}{% + \typeout{^^Jget dvipdfmx.def at \dvipdfmxDefi^^J + or \dvipdfmxDefii^^J}% + \def\IfDvipdfmxDef{Get \src{dvipdfmx.def} at \URL \dvipdfmxDefii \\ + or \URL \dvipdfmxDefi.}% +} + +% Author Info +\author {Th\'or Watanabe\thanks \@email \space \thanks \@homepage} +\title {\mac{jlisting.sty}\\ + ---Japanese Localized Patch File of \mac{listings}---} +\email {thor@tex.dante.jp} +\homepage {http://tex.dante.jp/typo/} +\date {2006/02/20} + +\makeatother + +\begin{document} +\maketitle +%\IfDvipdfmxDef + +\section{$B$A$g$C$H$7$?@bL@(B}% Short Description + +$B1|B<@2I';a$N7G<(HD$N!VHFMQE*$JIbF0BN!W$H$$$&0lO"$N=q$-9~$_$+$i(B +$BE>:\$7$^$7$?!#(B + +\begin{quote} + \url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21172.html}\\ + \url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21184.html}\\ + \url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21189.html}\\ + \url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21197.html} +\end{quote} + + Copyright $B$O5H1JE/H~;a$K$"$k$N$@$H;W$$$^$9!%(B + +\section{$B99?7MzNr(B}% ChageLogs + +\begin{description} + \item[ver.~0.1 (2004/03/24)] + $B$H$j$"$($:8x3+!%(B + \item[ver.~0.2 (2006/02/20)] + \verb|\lst@breakProcessOther| $BL?Na$NDj5A$NDI2C!%(B +\end{description} + +\section{$B%=!<%9%3!<%I(B} +\par\narrowbaselines +\verbatiminput{jlisting.sty} +\end{document}
--- a/thesis-paper.aux Sun Feb 01 07:02:29 2015 +0900 +++ b/thesis-paper.aux Sun Feb 08 17:45:46 2015 +0900 @@ -3,42 +3,74 @@ \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {1.1}研究背景と目的}{1}} +\citation{rfbProtocol} +\citation{tightvnc} \@writefile{toc}{\contentsline {chapter}{\numberline {第2章}TreeVNC について}{2}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {2.1}TreeVNC の概要}{2}} -\@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces 構成される木構造}}{2}} -\newlabel{fig:gpuarch}{{2.1}{2}} -\@writefile{toc}{\contentsline {section}{\numberline {2.2}TightVNC の概要}{2}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第3章}TreeVNC のリファクタリング}{3}} +\@writefile{toc}{\contentsline {section}{\numberline {2.1}RFBプロトコル}{2}} +\@writefile{toc}{\contentsline {section}{\numberline {2.2}TightVNC}{2}} +\@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces RFBプロトコル}}{3}} +\newlabel{fig:rfb}{{2.1}{3}} +\@writefile{toc}{\contentsline {section}{\numberline {2.3}node間のメッセージ}{4}} +\@writefile{lot}{\contentsline {table}{\numberline {2.1}{\ignorespaces 通信経路とmessage一覧}}{4}} +\newlabel{tb:message}{{2.1}{4}} +\@writefile{toc}{\contentsline {section}{\numberline {2.4}多人数でVNCを使用するときの問題点}{4}} +\@writefile{toc}{\contentsline {section}{\numberline {2.5}TreeVNC の構造}{4}} +\@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces 構成される木構造}}{5}} +\newlabel{fig:tree}{{2.2}{5}} +\@writefile{toc}{\contentsline {section}{\numberline {2.6}配信画面切り替え}{5}} +\@writefile{toc}{\contentsline {chapter}{\numberline {第3章}TreeVNC のリファクタリング}{6}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {3.1}動的な port 番号の指定}{3}} -\newlabel{tb:message}{{3.1}{3}} -\@writefile{lot}{\contentsline {table}{\numberline {3.1}{\ignorespaces 通信経路とmessage一覧}}{3}} -\@writefile{toc}{\contentsline {section}{\numberline {3.2}Tree の構成の変更}{4}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.1}複数のネットワークインターフェース接続}{4}} -\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Multi Network Tree}}{4}} -\newlabel{fig:gpuarch}{{3.1}{4}} -\@writefile{toc}{\contentsline {section}{\numberline {3.3}ホスト切り替え時の挙動の修正}{4}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第4章}TreeVNC の新機能}{5}} +\@writefile{toc}{\contentsline {section}{\numberline {3.1}動的な port 番号の指定}{6}} +\@writefile{toc}{\contentsline {section}{\numberline {3.2}ホスト切り替え時の挙動の修正}{6}} +\@writefile{toc}{\contentsline {section}{\numberline {3.3}Tree の構成の変更}{7}} +\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Multi Network Tree}}{7}} +\newlabel{fig:multinetworktree}{{3.1}{7}} +\@writefile{toc}{\contentsline {section}{\numberline {3.4}切断時の検知方法の変更}{7}} +\@writefile{lof}{\contentsline {figure}{\numberline {3.2}{\ignorespaces lostParent}}{8}} +\newlabel{fig:lostparent}{{3.2}{8}} +\@writefile{lof}{\contentsline {figure}{\numberline {3.3}{\ignorespaces lostChild1}}{8}} +\newlabel{fig:lostchild1}{{3.3}{8}} +\@writefile{lof}{\contentsline {figure}{\numberline {3.4}{\ignorespaces lostChild2}}{8}} +\newlabel{fig:lostchild2}{{3.4}{8}} +\@writefile{toc}{\contentsline {chapter}{\numberline {第4章}TreeVNC の新機能}{9}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {4.1}画面調整機能}{5}} -\@writefile{toc}{\contentsline {section}{\numberline {4.2}音声共有機能}{5}} -\@writefile{toc}{\contentsline {section}{\numberline {4.3}遠隔地からの接続}{5}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第5章}TreeVNC の評価}{6}} +\@writefile{toc}{\contentsline {section}{\numberline {4.1}画面サイズ調整機能}{9}} +\@writefile{toc}{\contentsline {section}{\numberline {4.2}マルチディスプレイ対応}{10}} +\newlabel{filtersingledisplay}{{4.1}{10}} +\@writefile{lol}{\contentsline {lstlisting}{\numberline {4.1}オプション--filterSingleDisplay}{10}} +\@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces }}{10}} +\newlabel{fig:}{{4.1}{10}} +\@writefile{lof}{\contentsline {figure}{\numberline {4.2}{\ignorespaces }}{10}} +\newlabel{fig:}{{4.2}{10}} +\@writefile{toc}{\contentsline {section}{\numberline {4.3}遠隔地からの接続}{11}} +\@writefile{lof}{\contentsline {figure}{\numberline {4.3}{\ignorespaces Remote Network Tree}}{11}} +\newlabel{fig:remotenetworktree1}{{4.3}{11}} +\@writefile{lof}{\contentsline {figure}{\numberline {4.4}{\ignorespaces Remote Network Tree}}{12}} +\newlabel{fig:remotenetworktree2}{{4.4}{12}} +\@writefile{toc}{\contentsline {chapter}{\numberline {第5章}TreeVNC の評価}{13}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {5.1}評価環境}{6}} -\@writefile{toc}{\contentsline {section}{\numberline {5.2}step毎の遅延}{6}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第6章}まとめ}{7}} +\@writefile{toc}{\contentsline {section}{\numberline {5.1}評価環境}{13}} +\@writefile{toc}{\contentsline {section}{\numberline {5.2}depth毎の遅延}{13}} +\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces step1}}{13}} +\newlabel{fig:gpuarch}{{5.1}{13}} +\@writefile{toc}{\contentsline {chapter}{\numberline {第6章}まとめ}{14}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {6.1}今後の課題}{7}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第7章}参考文献}{8}} +\@writefile{toc}{\contentsline {section}{\numberline {6.1}今後の課題}{14}} +\citation{*} +\bibstyle{junsrt} +\bibdata{thesis-paper} +\@writefile{toc}{\contentsline {chapter}{\numberline {第7章}謝辞}{15}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {chapter}{\numberline {第8章}謝辞}{9}} -\@writefile{lof}{\addvspace {10\p@ }} -\@writefile{lot}{\addvspace {10\p@ }} +\bibcite{rfbProtocol}{1} +\bibcite{tightvnc}{2} +\bibcite{taninari:thesis}{3} +\bibcite{taninari:2012a}{4} +\bibcite{taninari:2011a}{5} +\@writefile{toc}{\contentsline {chapter}{参考文献}{16}}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thesis-paper.bbl Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,28 @@ +\begin{thebibliography}{1} + +\bibitem{rfbProtocol} +Tristan Richardson. +\newblock The rfb protocol. +\newblock \url{http://www.realvnc.com/docs/rfbproto.pdf}. + +\bibitem{tightvnc} +{TightVNC Software}. +\newblock \url{http://www.tightvnc.com}. + +\bibitem{taninari:thesis} +谷成雄, 河野真治. +\newblock 授業やゼミ向けの画面共有システム treevnc の設計と実装 a screen + sharing system using tree structure for seminar and classwork. +\newblock 琉球大学工学部情報工学科 平成25年度 学位論文(修士), 2008. + +\bibitem{taninari:2012a} +谷成雄, 大城信康, 河野真治. +\newblock Vncを用いた授業用画面共有システムの設計・開発. +\newblock 情報処理学会, may 2012. + +\bibitem{taninari:2011a} +谷成雄, 大城信康, 河野真治. +\newblock Javaによるvncを用いた授業用画面共有システムの設計と開発. +\newblock 日本ソフトウェア科学会, sep 2011. + +\end{thebibliography}
--- a/thesis-paper.bib Sun Feb 01 07:02:29 2015 +0900 +++ b/thesis-paper.bib Sun Feb 08 17:45:46 2015 +0900 @@ -1,157 +1,33 @@ -@article{kono:2008a, - author = "河野真治", - title = "検証を自身で表現できるハードウェア、ソフトウェア記述言語 Continuation based C と、そのCell への応用", - journal = "電子情報通信学会VLSI設計技術研究会", - month = "March", - year = 2008 -} - -@article{akira:2008a, - author = "神里 晃 and 宮國 渡 and 杉山 千秋 and 河野 真治", - title = "CからCellアーキテクチャを利用したCbCへの変換", - journal = "電子情報通信学会VLSI設計技術研究会", - month = "March", - year = 2008 -} - -@article{akira:2006a, - author = "神里 晃 and 河野 真治", - title = "Continuation based CによるPS3 Cell のシミュレーション", - journal = "情報処理学会システムソフトウェアとオペレーティング・システム研究会", - month = "May", - year = 2006 -} - -@mastersthesis{akira:master, - author = "神里 晃", - title = "Cell を用いたゲームフレームワークの提案", - school = "琉球大学理工学研究科情報工学専攻", - month = "Feb", - year = 2008 +@Misc{rfbprotocol, + author = "Tristan Richardson", + title = "The RFB Protocol", + howpublished = "\url{http://www.realvnc.com/docs/rfbproto.pdf}" } -@mastersthesis{gongo:master, - author = "宮國 渡", - title = "Cell用の Fine-Grain Task Manager の実装", - school = "琉球大学理工学研究科情報工学専攻", - month = "Feb", - year = 2009 -} - -@article{gongo:2008a, - author = "宮國 渡 and 河野 真治 and 神里 晃 and 杉山 千秋", - title = "Cell 用の Fine-grain Task Manager の実装", - journal = "情報処理学会 システムソフトウェアとオペレーティング・システム研究会", - month = "April", - year = 2008 -} - -@article{chiaki:thesis, - author = "杉山 千秋", - title = "SceneGraph と StatePattern を用いたゲームフレームワークの設計と実装", - journal = "琉球大学工学部情報工学科 平成19年度卒業論文", - year = 2008 -} - -@article{akamine:2010a, - author = "赤嶺 一樹 and 河野 真治", - title = "Meta Engine を用いた Federated Linda の実験", - journal = "日本ソフトウェア科学会第 27 会大会(2010 年度)", - month = "Sep", - year = 2010 -} - -@mastersthesis{kaito:master, - author = "多賀野 海人", - title = "Cell Task Manager Cerium における Task を用いたパイプラインの改良", - school = "琉球大学理工学研究科情報工学専攻", - month = "Feb", - year = 2011 -} - -@article{yutaka:2010a, - author = "金城 裕 and 河野 真治", - title = "Fine Grain Task Manager Cerium のチューニング", - journal = "日本ソフトウェア科学会第 27 会大会", - month = "Sep", - year = 2010 +@Misc{tightvnc, + title = "{TightVNC Software}", + howpublished = "\url{http://www.tightvnc.com}" } -@article{yutaka:2011a, - author = "金城 裕 and 河野 真治", - title = "ゲームフレームワーク Cerium TaskManager の改良", - journal = "情報処理学会システムソフトウェアとオペレーティング・システム研究会", - month = "Apr", - year = 2011 -} - -@article{yutaka:2011b, - author = "金城 裕 and 河野 真治", - title = "Cerium におけるDataSegment APIの設計", - journal = "日本ソフトウェア科学会第 28 会大会", - month = "Sep", - year = 2011 -} - -@article{Jaeschke93, - author={G. Jaeschke}, - title={On Strong Pseudoprimes to Several Bases}, - journal= MC, - volume= 61, - year= 1993, - pages={915-926}, - mrnumber={94d:11004}, - annote={Greatly extends the computations of \cite{PSW80} useful for \href{http://primes.utm.edu/prove/prove2_3.html}{testing - small numbers}.} -} - -@article{takayama, - author = "高山 征大", - title = "「CELL REGZA」が搭載する並列化技術「Molatominum」", - journal = "", - month = "Dec", - year = 2009 +@article{taninari:thesis, + author = "谷成 雄 and 河野 真治", + title = "授業やゼミ向けの画面共有システム TreeVNC の設計と実装 A Screen Sharing System using Tree Structure for Seminar and Classwork", + journal = "琉球大学工学部情報工学科 平成25年度 学位論文(修士)", + year = 2008 } -@misc{ydl, -author = "", -title = "{Yellow Dog Linux for PowerPC Computers}", -howpublished = "{http://us.fixstars.com/products/ydl/}" -} - -@misc{cerium, -author = "", -title = "{SourceForge.JP: Cerium Rendering Engine}", -howpublished = "{https//sourceforge.jp/projects/cerium/}" -} - -@manual{cell, -author = "{Sony Corporation}", -title = "{Cell BroadbandEngine \texttrademark アーキテクチャ}", -year = 2006 +@article{taninari:2012a, + author = "谷成 雄 and 大城 信康 and 河野 真治", + title = "VNCを用いた授業用画面共有システムの設計・開発", + journal = "情報処理学会", + month = "may", + year = 2012 } -@manual{cell_cpp, -author = "{International Business Machines Corporation, Sony Computer Entertainment Incorporated, Toshiba Corporation}", -title = "{C/C++ Language Extensions for Cell Broadband Engine Architecture Version 2.6}", -year = 2008 -} - - -@misc{blender, -title = "{blender.org}", -howpublished = "{http://blender.org/}" +@article{taninari:2011a, + author = "谷成 雄 and 大城 信康 and 河野 真治", + title = "JAVAによるVNCを用いた授業用画面共有システムの設計と開発", + journal = "日本ソフトウェア科学会", + month = "sep", + year = 2011 } - -@misc{opengl, -title = "{opengl}", -howpublished = "{http://www.opengl.org/}" -} - -@article{akamine, -author = "{赤嶺一樹, 河野真治}", -title = "{Meta Engine を用いた Federated Linda の実験}", -journal = "{日本ソフトウェア科学会第 27 会大会(2010 年度)}", -month = "{Sep}", -year = 2010 -}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thesis-paper.blg Sun Feb 08 17:45:46 2015 +0900 @@ -0,0 +1,47 @@ +This is pBibTeX, Version 0.99d-j0.33 (utf8.euc) (TeX Live 2014) +Capacity: max_strings=35307, hash_size=35307, hash_prime=30011 +The top-level auxiliary file: thesis-paper.aux +The style file: junsrt.bst +Database file #1: thesis-paper.bib +You've used 5 entries, + 2270 wiz_defined-function locations, + 559 strings with 4634 characters, +and the built_in function-call counts, 942 in all, are: += -- 54 +> -- 32 +< -- 0 ++ -- 14 +- -- 9 +* -- 19 +:= -- 129 +add.period$ -- 14 +call.type$ -- 5 +change.case$ -- 5 +chr.to.int$ -- 0 +cite$ -- 5 +duplicate$ -- 64 +empty$ -- 109 +format.name$ -- 18 +if$ -- 225 +int.to.chr$ -- 0 +int.to.str$ -- 5 +missing$ -- 3 +newline$ -- 27 +num.names$ -- 4 +pop$ -- 41 +preamble$ -- 1 +purify$ -- 0 +quote$ -- 0 +skip$ -- 54 +stack$ -- 0 +substring$ -- 0 +swap$ -- 2 +text.length$ -- 0 +text.prefix$ -- 0 +top$ -- 0 +type$ -- 0 +warning$ -- 0 +while$ -- 4 +width$ -- 6 +write$ -- 48 +is.kanji.str$ -- 45
--- a/thesis-paper.lof Sun Feb 01 07:02:29 2015 +0900 +++ b/thesis-paper.lof Sun Feb 08 17:45:46 2015 +0900 @@ -1,10 +1,18 @@ \addvspace {10\p@ } \addvspace {10\p@ } -\contentsline {figure}{\numberline {2.1}{\ignorespaces 構成される木構造}}{2} +\contentsline {figure}{\numberline {2.1}{\ignorespaces RFBプロトコル}}{3} +\contentsline {figure}{\numberline {2.2}{\ignorespaces 構成される木構造}}{5} \addvspace {10\p@ } -\contentsline {figure}{\numberline {3.1}{\ignorespaces Multi Network Tree}}{4} +\contentsline {figure}{\numberline {3.1}{\ignorespaces Multi Network Tree}}{7} +\contentsline {figure}{\numberline {3.2}{\ignorespaces lostParent}}{8} +\contentsline {figure}{\numberline {3.3}{\ignorespaces lostChild1}}{8} +\contentsline {figure}{\numberline {3.4}{\ignorespaces lostChild2}}{8} +\addvspace {10\p@ } +\contentsline {figure}{\numberline {4.1}{\ignorespaces }}{10} +\contentsline {figure}{\numberline {4.2}{\ignorespaces }}{10} +\contentsline {figure}{\numberline {4.3}{\ignorespaces Remote Network Tree}}{11} +\contentsline {figure}{\numberline {4.4}{\ignorespaces Remote Network Tree}}{12} +\addvspace {10\p@ } +\contentsline {figure}{\numberline {5.1}{\ignorespaces step1}}{13} \addvspace {10\p@ } \addvspace {10\p@ } -\addvspace {10\p@ } -\addvspace {10\p@ } -\addvspace {10\p@ }
--- a/thesis-paper.log Sun Feb 01 07:02:29 2015 +0900 +++ b/thesis-paper.log Sun Feb 08 17:45:46 2015 +0900 @@ -1,4 +1,4 @@ -This is e-pTeX, Version 3.14159265-p3.5-130605-2.6 (utf8.euc) (TeX Live 2014) (preloaded format=platex 2014.10.23) 24 JAN 2015 19:40 +This is e-pTeX, Version 3.14159265-p3.5-130605-2.6 (utf8.euc) (TeX Live 2014) (preloaded format=platex 2014.10.23) 8 FEB 2015 17:43 entering extended mode restricted \write18 enabled. %&-line parsing enabled. @@ -83,35 +83,67 @@ (/usr/local/texlive/2014/texmf-dist/tex/latex/comment/comment.sty \CommentStream=\write3 -Excluding comment 'comment') (./dummy.tex) +Excluding comment 'comment') +(/usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip10 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +(/usr/local/texlive/2014/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count94 +\lst@gtempboxa=\box48 +\lst@token=\toks17 +\lst@length=\count95 +\lst@currlwidth=\dimen129 +\lst@column=\count96 +\lst@pos=\count97 +\lst@lostspace=\dimen130 +\lst@width=\dimen131 +\lst@newlines=\count98 +\lst@lineno=\count99 +\lst@maxwidth=\dimen132 + +(/usr/local/texlive/2014/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2014/03/04 1.5c (Carsten Heinz) +\c@lstnumber=\count100 +\lst@skipnumbers=\count101 +\lst@framebox=\box49 +) +(/usr/local/texlive/2014/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2014/03/04 1.5c listings configuration +)) +Package: listings 2014/03/04 1.5c (Carsten Heinz) + +(./jlisting.sty +Package: jlisting 2006/02/20 0.2 (Thor) +\lst@nextchar=\count102 +\lst@inputfile=\read1 +) (./dummy.tex) (/usr/local/texlive/2014/texmf-dist/tex/latex/base/makeidx.sty Package: makeidx 2000/03/29 v1.0m Standard LaTeX package ) (/usr/local/texlive/2014/texmf-dist/tex/latex/tools/multicol.sty Package: multicol 2014/04/23 v1.8e multicolumn formatting (FMi) -\c@tracingmulticols=\count94 -\mult@box=\box48 -\multicol@leftmargin=\dimen129 -\c@unbalance=\count95 -\c@collectmore=\count96 -\doublecol@number=\count97 -\multicoltolerance=\count98 -\multicolpretolerance=\count99 -\full@width=\dimen130 -\page@free=\dimen131 -\premulticols=\dimen132 -\postmulticols=\dimen133 +\c@tracingmulticols=\count103 +\mult@box=\box50 +\multicol@leftmargin=\dimen133 +\c@unbalance=\count104 +\c@collectmore=\count105 +\doublecol@number=\count106 +\multicoltolerance=\count107 +\multicolpretolerance=\count108 +\full@width=\dimen134 +\page@free=\dimen135 +\premulticols=\dimen136 +\postmulticols=\dimen137 \multicolsep=\skip43 \multicolbaselineskip=\skip44 -\partial@page=\box49 -\last@line=\box50 -\maxbalancingoverflow=\dimen134 -\mult@rightbox=\box51 -\mult@grightbox=\box52 -\mult@gfirstbox=\box53 -\mult@firstbox=\box54 -\@tempa=\box55 -\@tempa=\box56 +\partial@page=\box51 +\last@line=\box52 +\maxbalancingoverflow=\dimen138 +\mult@rightbox=\box53 +\mult@grightbox=\box54 +\mult@gfirstbox=\box55 +\mult@firstbox=\box56 \@tempa=\box57 \@tempa=\box58 \@tempa=\box59 @@ -127,14 +159,16 @@ \@tempa=\box69 \@tempa=\box70 \@tempa=\box71 -\c@columnbadness=\count100 -\c@finalcolumnbadness=\count101 -\last@try=\dimen135 -\multicolovershoot=\dimen136 -\multicolundershoot=\dimen137 -\mult@nat@firstbox=\box72 -\colbreak@box=\box73 -\mc@col@check@num=\count102 +\@tempa=\box72 +\@tempa=\box73 +\c@columnbadness=\count109 +\c@finalcolumnbadness=\count110 +\last@try=\dimen139 +\multicolovershoot=\dimen140 +\multicolundershoot=\dimen141 +\mult@nat@firstbox=\box74 +\colbreak@box=\box75 +\mc@col@check@num=\count111 ) \@indexfile=\write4 \openout4 = `thesis-paper.idx'. @@ -143,31 +177,32 @@ Writing index file thesis-paper.idx (./thesis-paper.aux -LaTeX Warning: Label `fig:gpuarch' multiply defined. +LaTeX Warning: Label `fig:' multiply defined. ) \openout1 = `thesis-paper.aux'. -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 36. -LaTeX Font Info: ... okay on input line 36. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 36. -LaTeX Font Info: ... okay on input line 36. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 36. -LaTeX Font Info: ... okay on input line 36. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 36. -LaTeX Font Info: ... okay on input line 36. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 36. -LaTeX Font Info: ... okay on input line 36. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 36. -LaTeX Font Info: ... okay on input line 36. -LaTeX Font Info: Checking defaults for JY1/mc/m/n on input line 36. -LaTeX Font Info: ... okay on input line 36. -LaTeX Font Info: Checking defaults for JT1/mc/m/n on input line 36. -LaTeX Font Info: ... okay on input line 36. +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 44. +LaTeX Font Info: ... okay on input line 44. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 44. +LaTeX Font Info: ... okay on input line 44. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 44. +LaTeX Font Info: ... okay on input line 44. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 44. +LaTeX Font Info: ... okay on input line 44. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 44. +LaTeX Font Info: ... okay on input line 44. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 44. +LaTeX Font Info: ... okay on input line 44. +LaTeX Font Info: Checking defaults for JY1/mc/m/n on input line 44. +LaTeX Font Info: ... okay on input line 44. +LaTeX Font Info: Checking defaults for JT1/mc/m/n on input line 44. +LaTeX Font Info: ... okay on input line 44. +\c@lstlisting=\count112 LaTeX Font Info: Font shape `JT1/mc/bx/n' in size <24.88> not available -(Font) Font shape `JT1/gt/m/n' tried instead on input line 38. +(Font) Font shape `JT1/gt/m/n' tried instead on input line 46. LaTeX Font Info: Font shape `JY1/mc/bx/n' in size <24.88> not available -(Font) Font shape `JY1/gt/m/n' tried instead on input line 38. +(Font) Font shape `JY1/gt/m/n' tried instead on input line 46. File: images/u-ryukyu-Mark.eps Graphic file (type eps) <images/u-ryukyu-Mark.eps> [1 @@ -187,15 +222,15 @@ \openout5 = `thesis-paper.toc'. LaTeX Font Info: Font shape `JT1/mc/bx/n' in size <10> not available -(Font) Font shape `JT1/gt/m/n' tried instead on input line 46. +(Font) Font shape `JT1/gt/m/n' tried instead on input line 54. LaTeX Font Info: Font shape `JY1/mc/bx/n' in size <10> not available -(Font) Font shape `JY1/gt/m/n' tried instead on input line 46. +(Font) Font shape `JY1/gt/m/n' tried instead on input line 54. LaTeX Font Info: Font shape `JT1/mc/bx/n' in size <10.95> not available -(Font) Font shape `JT1/gt/m/n' tried instead on input line 46. +(Font) Font shape `JT1/gt/m/n' tried instead on input line 54. LaTeX Font Info: Font shape `JY1/mc/bx/n' in size <10.95> not available -(Font) Font shape `JY1/gt/m/n' tried instead on input line 46. +(Font) Font shape `JY1/gt/m/n' tried instead on input line 54. LaTeX Font Info: External font `cmex10' loaded for size -(Font) <10.95> on input line 46. +(Font) <10.95> on input line 54. [1 ] (./thesis-paper.lof) @@ -209,7 +244,7 @@ \tf@lot=\write7 \openout7 = `thesis-paper.lot'. - (./introduction.tex [3 + (./chapter1.tex [3 ] 第 1 章(ivページ) @@ -217,52 +252,83 @@ (Font) Font shape `JT1/gt/m/n' tried instead on input line 4. LaTeX Font Info: Font shape `JY1/mc/bx/n' in size <17.28> not available (Font) Font shape `JY1/gt/m/n' tried instead on input line 4. -) (./AboutTreeVNC.tex [1 +) (./chapter2.tex [1 ] 第 2 章(2ページ) -File: ./images/TreeVNC.pdf Graphic file (type pdf) -<./images/TreeVNC.pdf>) (./Refactoring.tex [2 +File: ./images/chapter2/rfbprotocol.pdf Graphic file (type pdf) +<./images/chapter2/rfbprotocol.pdf> [2 ] -第 3 章(3ページ) +File: images/emblem-bitmap.eps Graphic file (type eps) + <images/emblem-bitmap.eps> [3] LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 7. +(Font) <5> on input line 36. -Overfull \hbox (20.63205pt too wide) in paragraph at lines 7--37 -[][] +Overfull \hbox (20.63205pt too wide) in paragraph at lines 36--65 +[][] [] -[3 +File: ./images/chapter2/TreeVNC.pdf Graphic file (type pdf) +<./images/chapter2/TreeVNC.pdf> +File: images/emblem-bitmap.eps Graphic file (type eps) + <images/emblem-bitmap.eps> [4]) (./chapter3.tex +File: images/emblem-bitmap.eps Graphic file (type eps) +<images/emblem-bitmap.eps> [5] +第 3 章(6ページ) +[6 ] -LaTeX Font Info: Font shape `JT1/mc/bx/n' in size <14.4> not available -(Font) Font shape `JT1/gt/m/n' tried instead on input line 45. -LaTeX Font Info: Font shape `JY1/mc/bx/n' in size <14.4> not available -(Font) Font shape `JY1/gt/m/n' tried instead on input line 45. -File: ./images/MultiNetworkTree.pdf Graphic file (type pdf) - <./images/MultiNetworkTree.pdf>) (./NewFactionality.tex +File: ./images/chapter3/MultiNetworkTree.pdf Graphic file (type pdf) + <./images/chapter3/MultiNetworkTree.pdf> +File: ./images/chapter3/lostParent.pdf Graphic file (type pdf) + +<./images/chapter3/lostParent.pdf> +File: ./images/chapter3/lostChild1.pdf Graphic file (type pdf) + <./images/chapter3/lostChild1.pdf> +File: ./images/chapter3/lostChild2.pdf Graphic file (type pdf) + +<./images/chapter3/lostChild2.pdf>) (./chapter4.tex File: images/emblem-bitmap.eps Graphic file (type eps) - -<images/emblem-bitmap.eps> [4] -第 4 章(5ページ) -) (./Test.tex [5 + <images/emblem-bitmap.eps> +[7] +File: images/emblem-bitmap.eps Graphic file (type eps) + <images/emblem-bitmap.eps> [8] +第 4 章(9ページ) +[9 ] -第 5 章(6ページ) -) (./Matome.tex [6 +File: ./images/chapter4/flameDisplaySizeFilterVer.pdf Graphic file (type pdf) + <./images/chapter4/flameDisplaySizeFilterVer.pdf> +File: ./images/chapter4/sendInitData.pdf Graphic file (type pdf) + +<./images/chapter4/sendInitData.pdf> +File: images/emblem-bitmap.eps Graphic file (type eps) + <images/emblem-bitmap.eps> [10] +File: ./images/chapter4/remotenetwork.pdf Graphic file (type pdf) + +<./images/chapter4/remotenetwork.pdf> +File: ./images/chapter4/remotenetwork2.pdf Graphic file (type pdf) + <./images/chapter4/remotenetwork2.pdf>) +(./chapter5.tex +File: images/emblem-bitmap.eps Graphic file (type eps) + <images/emblem-bitmap.eps> [11] +File: images/emblem-bitmap.eps Graphic file (type eps) + <images/emblem-bitmap.eps> +[12] +第 5 章(13ページ) +File: ./images/Test/step1.eps Graphic file (type eps) +<./images/Test/step1.eps>) (./chapter6.tex [13 ] -第 6 章(7ページ) -) (./SourceBooks.tex [7 +第 6 章(14ページ) +) (./chapter8.tex [14 ] -第 7 章(8ページ) -) (./Thanks.tex [8 +第 7 章(15ページ) +) (./thesis-paper.bbl [15 -] -第 8 章(9ページ) -) [9 +]) [16 ] (./thesis-paper.aux) @@ -270,12 +336,12 @@ ) Here is how much of TeX's memory you used: - 1009 strings out of 493807 - 12840 string characters out of 6151950 - 80456 words of memory out of 5000000 - 4459 multiletter control sequences out of 15000+600000 - 19221 words of font info for 75 fonts, out of 8000000 for 9000 + 2317 strings out of 493807 + 32228 string characters out of 6151950 + 103250 words of memory out of 5000000 + 5735 multiletter control sequences out of 15000+600000 + 17857 words of font info for 70 fonts, out of 8000000 for 9000 929 hyphenation exceptions out of 8191 - 29i,11n,21p,208b,425s stack positions out of 5000i,500n,10000p,200000b,80000s + 29i,11n,32p,249b,891s stack positions out of 5000i,500n,10000p,200000b,80000s -Output written on thesis-paper.dvi (13 pages, 15248 bytes). +Output written on thesis-paper.dvi (20 pages, 37788 bytes).
--- a/thesis-paper.lot Sun Feb 01 07:02:29 2015 +0900 +++ b/thesis-paper.lot Sun Feb 08 17:45:46 2015 +0900 @@ -1,7 +1,6 @@ \addvspace {10\p@ } \addvspace {10\p@ } -\addvspace {10\p@ } -\contentsline {table}{\numberline {3.1}{\ignorespaces 通信経路とmessage一覧}}{3} +\contentsline {table}{\numberline {2.1}{\ignorespaces 通信経路とmessage一覧}}{4} \addvspace {10\p@ } \addvspace {10\p@ } \addvspace {10\p@ }
--- a/thesis-paper.tex Sun Feb 01 07:02:29 2015 +0900 +++ b/thesis-paper.tex Sun Feb 08 17:45:46 2015 +0900 @@ -3,6 +3,14 @@ \usepackage{ascmac} \usepackage[dvipdfmx]{graphicx} \usepackage{comment} +\usepackage{url} +\usepackage{listings,jlisting} + +\lstset{ + commentstyle={\itshape \color[cmyk]{1,0,1,0}}, + frame=single, + tabsize=2 +} \input{dummy.tex} %% font @@ -49,32 +57,29 @@ \listoftables %序論 -\input{introduction.tex} +\input{chapter1.tex} %TreeVNC について -\input{AboutTreeVNC.tex} +\input{chapter2.tex} %TreeVNC のリファクタリング -\input{Refactoring.tex} +\input{chapter3.tex} %TreeVNC の新機能 -\input{NewFactionality.tex} +\input{chapter4.tex} %評価 -\input{Test.tex} +\input{chapter5.tex} %まとめ -\input{Matome.tex} - -%参考文献 -\input{SourceBooks.tex} +\input{chapter6.tex} %謝辞 -\input{Thanks.tex} +\input{chapter8.tex} %参考文献 -%\nocite{*} -%\bibliographystyle{junsrt} -%\bibliography{thesis-paper} +\nocite{*} +\bibliographystyle{junsrt} +\bibliography{thesis-paper} \end{document}
--- a/thesis-paper.toc Sun Feb 01 07:02:29 2015 +0900 +++ b/thesis-paper.toc Sun Feb 08 17:45:46 2015 +0900 @@ -1,21 +1,25 @@ \contentsline {chapter}{\numberline {第1章}序論}{1} \contentsline {section}{\numberline {1.1}研究背景と目的}{1} \contentsline {chapter}{\numberline {第2章}TreeVNC について}{2} -\contentsline {section}{\numberline {2.1}TreeVNC の概要}{2} -\contentsline {section}{\numberline {2.2}TightVNC の概要}{2} -\contentsline {chapter}{\numberline {第3章}TreeVNC のリファクタリング}{3} -\contentsline {section}{\numberline {3.1}動的な port 番号の指定}{3} -\contentsline {section}{\numberline {3.2}Tree の構成の変更}{4} -\contentsline {subsection}{\numberline {3.2.1}複数のネットワークインターフェース接続}{4} -\contentsline {section}{\numberline {3.3}ホスト切り替え時の挙動の修正}{4} -\contentsline {chapter}{\numberline {第4章}TreeVNC の新機能}{5} -\contentsline {section}{\numberline {4.1}画面調整機能}{5} -\contentsline {section}{\numberline {4.2}音声共有機能}{5} -\contentsline {section}{\numberline {4.3}遠隔地からの接続}{5} -\contentsline {chapter}{\numberline {第5章}TreeVNC の評価}{6} -\contentsline {section}{\numberline {5.1}評価環境}{6} -\contentsline {section}{\numberline {5.2}step毎の遅延}{6} -\contentsline {chapter}{\numberline {第6章}まとめ}{7} -\contentsline {section}{\numberline {6.1}今後の課題}{7} -\contentsline {chapter}{\numberline {第7章}参考文献}{8} -\contentsline {chapter}{\numberline {第8章}謝辞}{9} +\contentsline {section}{\numberline {2.1}RFBプロトコル}{2} +\contentsline {section}{\numberline {2.2}TightVNC}{2} +\contentsline {section}{\numberline {2.3}node間のメッセージ}{4} +\contentsline {section}{\numberline {2.4}多人数でVNCを使用するときの問題点}{4} +\contentsline {section}{\numberline {2.5}TreeVNC の構造}{4} +\contentsline {section}{\numberline {2.6}配信画面切り替え}{5} +\contentsline {chapter}{\numberline {第3章}TreeVNC のリファクタリング}{6} +\contentsline {section}{\numberline {3.1}動的な port 番号の指定}{6} +\contentsline {section}{\numberline {3.2}ホスト切り替え時の挙動の修正}{6} +\contentsline {section}{\numberline {3.3}Tree の構成の変更}{7} +\contentsline {section}{\numberline {3.4}切断時の検知方法の変更}{7} +\contentsline {chapter}{\numberline {第4章}TreeVNC の新機能}{9} +\contentsline {section}{\numberline {4.1}画面サイズ調整機能}{9} +\contentsline {section}{\numberline {4.2}マルチディスプレイ対応}{10} +\contentsline {section}{\numberline {4.3}遠隔地からの接続}{11} +\contentsline {chapter}{\numberline {第5章}TreeVNC の評価}{13} +\contentsline {section}{\numberline {5.1}評価環境}{13} +\contentsline {section}{\numberline {5.2}depth毎の遅延}{13} +\contentsline {chapter}{\numberline {第6章}まとめ}{14} +\contentsline {section}{\numberline {6.1}今後の課題}{14} +\contentsline {chapter}{\numberline {第7章}謝辞}{15} +\contentsline {chapter}{参考文献}{16}