Matthew Retchin edited Introduction.tex  over 9 years ago

Commit id: 5e952d842cf95b5e77d62a0eb7d69e43cad4c51d

deletions | additions      

       

\url{http://web.archive.org/web/20140715223826/http://bendwavy.org/sphere.htm}  \subsection{Restatement of the Problem}  The problem is that the Gamma Knife radiosurgery can be inaccurate and when it is inaccurate, it can bear dangerous consequences, namely harming healthy brain tissue.\begin{lstlisting}[language=python]  tumor_length = randint(int(0.1 * matrix.area), int(0.9 * matrix.area))  coord = [randint(1, matrix.m), random.randint(1, matrix.n)]  for i in range(0, matrix.tumor_length):  direction = randint(1, 4)  if direction == UP:  coord[1] -= 1  elif direction == DOWN:  coord[1] += 1  elif direction == LEFT:  coord[0] -= 1  elif direction == RIGHT:  coord[0] += 1  \end{lstlisting}