Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spellcheck #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book/book.tex
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
\usepackage{amsmath}
\usepackage{amsthm}

% format end of chapter excercises
% format end of chapter exercises
\newtheoremstyle{exercise}
{12pt} % space above
{12pt} % space below
Expand Down Expand Up @@ -2904,7 +2904,7 @@ \chapter{Scale-free networks}
The chapter ends with a discussion of WS and BA graphs as explanatory
models for small world networks.

The code for this chapter is in {\tt chap04.ipynb} in the respository
The code for this chapter is in {\tt chap04.ipynb} in the repository
for this book. More information about working with the code is
in Section~\ref{code}.

Expand Down
2 changes: 1 addition & 1 deletion code/chap09soln.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -109692,7 +109692,7 @@
"# In some runs, the average vision increases at first, \n",
"# and then falls gradually, which is surprising.\n",
"\n",
"# I conjecture that the intial die-off creates pressure\n",
"# I conjecture that the initial die-off creates pressure\n",
"# that kills agents that would have survived in steady state.\n",
"\n",
"# After the initial die-off, these agents are able to make \n",
Expand Down
2 changes: 1 addition & 1 deletion code/fof_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"\n",
"I propose a new model that generates graphs with\n",
"\n",
"1. Low path lenths,\n",
"1. Low path lengths,\n",
"2. Clustering coefficients similar to the HK model (but still lower than observed values), and\n",
"3. A degree distribution that fits observed data well.\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion code/nkmodel.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@
" \n",
" returns: Cdf of component (neutral network) sizes,\n",
" float fraction of locations in a common network,\n",
" float maximum fitness acheived by the agents\n",
" float maximum fitness achieved by the agents\n",
" \"\"\"\n",
" nkqland = NKqLandscape(N, K, F=F)\n",
" \n",
Expand Down
2 changes: 1 addition & 1 deletion code/nkmodelsoln.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@
" \n",
" returns: Cdf of component (neutral network) sizes,\n",
" float fraction of locations in a common network,\n",
" float maximum fitness acheived by the agents\n",
" float maximum fitness achieved by the agents\n",
" \"\"\"\n",
" nkqland = NKqLandscape(N, K, F=F)\n",
" \n",
Expand Down
2 changes: 1 addition & 1 deletion code/sspile.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
"from scipy.ndimage import imread\n",
"\n",
"def read_pile(k):\n",
" \"\"\"Reads an image of a single souce sand pile model.\n",
" \"\"\"Reads an image of a single source sand pile model.\n",
" \n",
" Images generated by Wesley Pegden,\n",
" available from http://math.cmu.edu/~wes/piles/\n",
Expand Down