parallel_computing.git
13 years agoRemove typo backtick from src/plot_image/README.
W. Trevor King [Tue, 9 Nov 2010 15:32:07 +0000 (10:32 -0500)]
Remove typo backtick from src/plot_image/README.

13 years agoUpdate links to plot_image.py.
W. Trevor King [Tue, 9 Nov 2010 15:29:21 +0000 (10:29 -0500)]
Update links to plot_image.py.

13 years agoMove gen_data_*.c from src/mandelbrot to src/plot_image & add README, Makefile.
W. Trevor King [Tue, 9 Nov 2010 15:22:20 +0000 (10:22 -0500)]
Move gen_data_*.c from src/mandelbrot to src/plot_image & add README, Makefile.

13 years agoExplain that you may have to kill ./plot_image.py's interactive plot.
W. Trevor King [Tue, 9 Nov 2010 15:04:31 +0000 (10:04 -0500)]
Explain that you may have to kill ./plot_image.py's interactive plot.

13 years agoClean up src/plot_image/plot_image.py.
W. Trevor King [Tue, 9 Nov 2010 14:38:23 +0000 (09:38 -0500)]
Clean up src/plot_image/plot_image.py.

13 years agoAdd explanatory comment and clean up src/global_operations/print_tree.c output.
W. Trevor King [Sat, 30 Oct 2010 19:52:19 +0000 (15:52 -0400)]
Add explanatory comment and clean up src/global_operations/print_tree.c output.

13 years agoRan `indent -linux` on src/global_operations/*.c.
W. Trevor King [Sat, 30 Oct 2010 19:32:10 +0000 (15:32 -0400)]
Ran `indent -linux` on src/global_operations/*.c.

13 years agoUse %lu to format the number of bytes in src/sorting/main.c.
W. Trevor King [Fri, 29 Oct 2010 15:48:28 +0000 (11:48 -0400)]
Use %lu to format the number of bytes in src/sorting/main.c.

13 years agoRun `indent -linux` to clean up whitespace in src/sorting/main.c.
W. Trevor King [Fri, 29 Oct 2010 15:43:31 +0000 (11:43 -0400)]
Run `indent -linux` to clean up whitespace in src/sorting/main.c.

13 years agoCopy sort-check from src/sorting/main.c to assignments/archive/sorting/soln/main.c.
W. Trevor King [Fri, 29 Oct 2010 15:42:46 +0000 (11:42 -0400)]
Copy sort-check from src/sorting/main.c to assignments/archive/sorting/soln/main.c.

13 years agoRevert ebbd9d49a9741639f255e885bf56f637c28eeda7.
W. Trevor King [Fri, 29 Oct 2010 15:38:09 +0000 (11:38 -0400)]
Revert ebbd9d49a9741639f255e885bf56f637c28eeda7.

commit ebbd9d49a9741639f255e885bf56f637c28eeda7
Author: W. Trevor King <wking@drexel.edu>
Date:   Mon Oct 25 12:54:21 2010 -0400

    quicksort.c: Don't sort the portion of the list that matches the pivot.

This left unsorted entries lying around, but I'm not quite sure why.

13 years agoAdd sort check to src/sorting/main.c's DEBUG code.
W. Trevor King [Fri, 29 Oct 2010 15:36:39 +0000 (11:36 -0400)]
Add sort check to src/sorting/main.c's DEBUG code.

13 years agoUse MPI_ANY_SOURCE when receiving sorted lists in sorting/soln/main.c.
W. Trevor King [Wed, 27 Oct 2010 12:20:52 +0000 (08:20 -0400)]
Use MPI_ANY_SOURCE when receiving sorted lists in sorting/soln/main.c.

13 years agoUpdate tree_broadcast assigment for fall 2010.
W. Trevor King [Tue, 26 Oct 2010 15:01:40 +0000 (11:01 -0400)]
Update tree_broadcast assigment for fall 2010.

13 years agoAdd solution to sorting assignment.
W. Trevor King [Tue, 26 Oct 2010 14:33:44 +0000 (10:33 -0400)]
Add solution to sorting assignment.

13 years agoDon't print more elements than there are in src/sorting/main.c:printlist.
W. Trevor King [Tue, 26 Oct 2010 14:15:21 +0000 (10:15 -0400)]
Don't print more elements than there are in src/sorting/main.c:printlist.

13 years agoUpdate src/sorting/README for main.h -> sort.h rename.
W. Trevor King [Tue, 26 Oct 2010 14:14:53 +0000 (10:14 -0400)]
Update src/sorting/README for main.h -> sort.h rename.

13 years agoquicksort.c: Don't sort the portion of the list that matches the pivot.
W. Trevor King [Mon, 25 Oct 2010 16:54:21 +0000 (12:54 -0400)]
quicksort.c: Don't sort the portion of the list that matches the pivot.

13 years agoProtect quicksort pivot index from overflow.
W. Trevor King [Mon, 25 Oct 2010 15:55:31 +0000 (11:55 -0400)]
Protect quicksort pivot index from overflow.

Mentioned on
  http://en.wikipedia.org/wiki/Quicksort

  Note the left + (right-left)/2 expression. (left + right)/2 would
  seem to be adequate, but in the presence of overflow, can give the
  wrong answer; for example, in signed 16-bit arithmetic, 32000 +
  32000 is not 64000 but -1536, and dividing that number by two will
  give you a new pivotIndex of -768 — obviously wrong.

13 years agoUse a PIPE to pass stdin to the executable in src/sorting/scaling.py.
W. Trevor King [Mon, 25 Oct 2010 14:42:49 +0000 (10:42 -0400)]
Use a PIPE to pass stdin to the executable in src/sorting/scaling.py.

13 years agoAdjust src/sorting/main.c to read stdin by default.
W. Trevor King [Mon, 25 Oct 2010 14:37:56 +0000 (10:37 -0400)]
Adjust src/sorting/main.c to read stdin by default.

13 years agoImport with statement in src/sorting/scaling.py for Python 2.5.
W. Trevor King [Mon, 25 Oct 2010 14:09:55 +0000 (10:09 -0400)]
Import with statement in src/sorting/scaling.py for Python 2.5.

13 years agoDon't wrap epilog in src/sorting/scaling.py --help.
W. Trevor King [Mon, 25 Oct 2010 14:05:03 +0000 (10:05 -0400)]
Don't wrap epilog in src/sorting/scaling.py --help.

13 years agoAdd --generator option to src/sorting/scaling.py.
W. Trevor King [Mon, 25 Oct 2010 14:03:24 +0000 (10:03 -0400)]
Add --generator option to src/sorting/scaling.py.

13 years agoMove main src/sorting/scaling.py code into main() function.
W. Trevor King [Mon, 25 Oct 2010 13:55:25 +0000 (09:55 -0400)]
Move main src/sorting/scaling.py code into main() function.

13 years agoExtend src/sorting/scaling.py to handle `cat data | sort` syntax.
W. Trevor King [Sun, 24 Oct 2010 23:09:17 +0000 (19:09 -0400)]
Extend src/sorting/scaling.py to handle `cat data | sort` syntax.

13 years agoExtend src/sorting/main.c to also read from stdin.
W. Trevor King [Sun, 24 Oct 2010 21:14:41 +0000 (17:14 -0400)]
Extend src/sorting/main.c to also read from stdin.

13 years agoAdded src/sorting/scaling.py to test sort algorithm scaling vs. N.
W. Trevor King [Sun, 24 Oct 2010 19:52:06 +0000 (15:52 -0400)]
Added src/sorting/scaling.py to test sort algorithm scaling vs. N.

13 years agoDocument DEBUG usage and ordered-data generation in src/sorting/README and Makefile.
W. Trevor King [Sun, 24 Oct 2010 18:35:37 +0000 (14:35 -0400)]
Document DEBUG usage and ordered-data generation in src/sorting/README and Makefile.

13 years agoAdd DEBUG and NUM_SHOWN to src/sorting/main.c.
W. Trevor King [Sun, 24 Oct 2010 18:35:06 +0000 (14:35 -0400)]
Add DEBUG and NUM_SHOWN to src/sorting/main.c.

13 years agoGive src/sorting/data.py the option of generating sorted data.
W. Trevor King [Sun, 24 Oct 2010 18:33:41 +0000 (14:33 -0400)]
Give src/sorting/data.py the option of generating sorted data.

13 years agoMinor style cleanups to src/sorting. Also ran through `indent --linux *.[hc]`.
W. Trevor King [Sun, 24 Oct 2010 18:03:23 +0000 (14:03 -0400)]
Minor style cleanups to src/sorting.  Also ran through `indent --linux *.[hc]`.

13 years agoFix links into src/average for average.c and flowchart.pdf.
W. Trevor King [Fri, 15 Oct 2010 13:24:47 +0000 (09:24 -0400)]
Fix links into src/average for average.c and flowchart.pdf.

13 years agompdboot requires an `-n N` option. Adjust src/*/README accordingly.
W. Trevor King [Wed, 13 Oct 2010 16:41:26 +0000 (12:41 -0400)]
mpdboot requires an `-n N` option.  Adjust src/*/README accordingly.

13 years agoDocument 5.cfg in sudoku/index.shtml.
W. Trevor King [Wed, 13 Oct 2010 11:43:01 +0000 (07:43 -0400)]
Document 5.cfg in sudoku/index.shtml.

13 years agoAdd Sudoku._slice_completion_solver() to sudoku.py.
W. Trevor King [Wed, 13 Oct 2010 11:39:03 +0000 (07:39 -0400)]
Add Sudoku._slice_completion_solver() to sudoku.py.

13 years agoAdd Easter Monster Sudoku puzzle as 5.cfg.
W. Trevor King [Tue, 12 Oct 2010 14:51:17 +0000 (10:51 -0400)]
Add Easter Monster Sudoku puzzle as 5.cfg.

13 years agoDocument new Sudoku puzzles in the assigment's index.shtml.
W. Trevor King [Tue, 12 Oct 2010 12:41:02 +0000 (08:41 -0400)]
Document new Sudoku puzzles in the assigment's index.shtml.

13 years agoAdded impossible Sudoku problem 0.cfg to encourage failure testing.
W. Trevor King [Tue, 12 Oct 2010 12:37:43 +0000 (08:37 -0400)]
Added impossible Sudoku problem 0.cfg to encourage failure testing.

13 years agoAdded Sajjan Singh Mehta's harder Sudoku puzzle (4.cfg).
W. Trevor King [Tue, 12 Oct 2010 12:34:26 +0000 (08:34 -0400)]
Added Sajjan Singh Mehta's harder Sudoku puzzle (4.cfg).

Also adjusted spacing of puzzles 1 through 3.

13 years agoFix "failed to solve" comparison in sudoku.py.
W. Trevor King [Tue, 12 Oct 2010 12:29:42 +0000 (08:29 -0400)]
Fix "failed to solve" comparison in sudoku.py.

Also print puzzle status if execution is interrupted.

13 years agoAllow later submission of first two hwk assignments (new student).
W. Trevor King [Fri, 8 Oct 2010 14:58:33 +0000 (10:58 -0400)]
Allow later submission of first two hwk assignments (new student).

13 years agoPoint to Python wrappers and related tools in content/Elementary_MPI/.
W. Trevor King [Fri, 8 Oct 2010 13:41:30 +0000 (09:41 -0400)]
Point to Python wrappers and related tools in content/Elementary_MPI/.

13 years agoAdd vcs-git link to shared/header.shtml.
W. Trevor King [Thu, 7 Oct 2010 13:27:14 +0000 (09:27 -0400)]
Add vcs-git link to shared/header.shtml.

See
  http://kitenet.net/~joey/rfc/rel-vcs/
for a description of the rel=vcs-* microformat.

13 years agoAdd "Examples" link to src/.
W. Trevor King [Thu, 7 Oct 2010 13:24:23 +0000 (09:24 -0400)]
Add "Examples" link to src/.

13 years agoAdd CSS validation to the footer.
W. Trevor King [Thu, 7 Oct 2010 13:21:47 +0000 (09:21 -0400)]
Add CSS validation to the footer.

13 years agoAdd _script/README and fix _script/math.sh documentation.
W. Trevor King [Thu, 7 Oct 2010 13:15:29 +0000 (09:15 -0400)]
Add _script/README and fix _script/math.sh documentation.

13 years agoAdd build- and clean-all.sh scripts for complete builds.
W. Trevor King [Thu, 7 Oct 2010 13:01:00 +0000 (09:01 -0400)]
Add build- and clean-all.sh scripts for complete builds.

13 years agoImprove _script/* root directory handling.
W. Trevor King [Thu, 7 Oct 2010 12:39:57 +0000 (08:39 -0400)]
Improve _script/* root directory handling.

13 years agoAdd Python submit solution.
W. Trevor King [Thu, 7 Oct 2010 12:29:03 +0000 (08:29 -0400)]
Add Python submit solution.

13 years agoAdded Python sudoku solution.
W. Trevor King [Thu, 7 Oct 2010 11:38:35 +0000 (07:38 -0400)]
Added Python sudoku solution.

13 years agoUpdated with first two Fall 2010 assignments.
W. Trevor King [Wed, 6 Oct 2010 20:58:35 +0000 (16:58 -0400)]
Updated with first two Fall 2010 assignments.

13 years agoMerge branch 'master' of /home/einstein/wking/public_html/code/git/parallel_computing
W. Trevor King [Fri, 1 Oct 2010 14:02:51 +0000 (10:02 -0400)]
Merge branch 'master' of /home/einstein/wking/public_html/code/git/parallel_computing

13 years agoCorrect typo "nning" -> "running" in content/message_passing/index.shtml.
W. Trevor King [Fri, 1 Oct 2010 14:01:01 +0000 (10:01 -0400)]
Correct typo "nning" -> "running" in content/message_passing/index.shtml.

13 years agoRemove old temporary files from content/monte_carlo/.
W. Trevor King [Thu, 16 Sep 2010 04:03:12 +0000 (00:03 -0400)]
Remove old temporary files from content/monte_carlo/.

13 years agoCleaned up src/global_operations/ (was src/print_tree/).
W. Trevor King [Thu, 16 Sep 2010 04:01:53 +0000 (00:01 -0400)]
Cleaned up src/global_operations/ (was src/print_tree/).

13 years agoAdd <p>...</p> wrappers to some .tar.gz reference paragraphs.
W. Trevor King [Thu, 16 Sep 2010 02:57:10 +0000 (22:57 -0400)]
Add <p>...</p> wrappers to some .tar.gz reference paragraphs.

13 years agoCleaned up src/sorting/.
W. Trevor King [Thu, 16 Sep 2010 02:52:36 +0000 (22:52 -0400)]
Cleaned up src/sorting/.

13 years agoRemove content/game_of_life/img/old/ (only duplicates of .../img/).
W. Trevor King [Thu, 16 Sep 2010 01:57:27 +0000 (21:57 -0400)]
Remove content/game_of_life/img/old/ (only duplicates of .../img/).

13 years agoCleaned up src/average/.
W. Trevor King [Thu, 16 Sep 2010 01:45:19 +0000 (21:45 -0400)]
Cleaned up src/average/.

13 years agoCleaned up src/MPI2_message_passing/.
W. Trevor King [Wed, 15 Sep 2010 16:28:24 +0000 (12:28 -0400)]
Cleaned up src/MPI2_message_passing/.

13 years agoUpdated .make_tar and .htaccess for all src/* directories.
W. Trevor King [Wed, 15 Sep 2010 11:59:57 +0000 (07:59 -0400)]
Updated .make_tar and .htaccess for all src/* directories.

13 years agoRemove Elementary_MPI/.html_toc now that there is no longer an examples subdir.
W. Trevor King [Wed, 15 Sep 2010 11:56:48 +0000 (07:56 -0400)]
Remove Elementary_MPI/.html_toc now that there is no longer an examples subdir.

13 years agoCleaned up src/hello_MPI/.
W. Trevor King [Wed, 15 Sep 2010 03:43:47 +0000 (23:43 -0400)]
Cleaned up src/hello_MPI/.

13 years ago<i> -> <em> and similar in Elementary_MPI/index.shtml.
W. Trevor King [Wed, 15 Sep 2010 01:36:03 +0000 (21:36 -0400)]
<i> -> <em> and similar in Elementary_MPI/index.shtml.

13 years agoReplace good.c with a symlink to Metropolis_Gaussian_Client_Server.c.
W. Trevor King [Tue, 14 Sep 2010 22:51:55 +0000 (18:51 -0400)]
Replace good.c with a symlink to Metropolis_Gaussian_Client_Server.c.

The source was identical.  I'm not sure why there was a separate
good.c, but we'll keep it for now.

13 years agoMerge monte_carlo/index.shtml into monte_carlo/README.
W. Trevor King [Tue, 14 Sep 2010 22:50:35 +0000 (18:50 -0400)]
Merge monte_carlo/index.shtml into monte_carlo/README.

13 years agoConsolidate plot_image.py into ./src/plot_image/.
W. Trevor King [Tue, 14 Sep 2010 22:46:12 +0000 (18:46 -0400)]
Consolidate plot_image.py into ./src/plot_image/.

13 years agoMove MS*.c from mandelbrot/MS-codes/ to mandelbrot/.
W. Trevor King [Tue, 14 Sep 2010 22:43:02 +0000 (18:43 -0400)]
Move MS*.c from mandelbrot/MS-codes/ to mandelbrot/.

13 years agoRemove src/mandelbrot/legacy_codes/
W. Trevor King [Tue, 14 Sep 2010 22:40:48 +0000 (18:40 -0400)]
Remove src/mandelbrot/legacy_codes/

I'm not sure how these relate to the current codes in MS-codes/, but
they claim to be legacy code, so I'm removing them.  If you want them,
they'll still be there in the history.

13 years agoRemove src/mandelbrot/MS-codes_winter_2008/
W. Trevor King [Tue, 14 Sep 2010 22:33:38 +0000 (18:33 -0400)]
Remove src/mandelbrot/MS-codes_winter_2008/

It was an older version of MS-codes/, with few changes.

13 years agoMerged src/monte_carlo/transfer/ into src/monte_carlo/.
W. Trevor King [Tue, 14 Sep 2010 19:24:19 +0000 (15:24 -0400)]
Merged src/monte_carlo/transfer/ into src/monte_carlo/.

13 years agoMerged src/client_server/ into src/shakespeare/parallel/.
W. Trevor King [Tue, 14 Sep 2010 19:17:41 +0000 (15:17 -0400)]
Merged src/client_server/ into src/shakespeare/parallel/.

13 years agoRemoved src/MPI2_message_passing/ and replaced with src/MPI2_message_passing2/.
W. Trevor King [Tue, 14 Sep 2010 19:05:46 +0000 (15:05 -0400)]
Removed src/MPI2_message_passing/ and replaced with src/MPI2_message_passing2/.

The only file in src/MPI2_message_passing:
  message.c
is effectively identical to the new
  simplest_message.c

13 years agomatmult_cuda -> matrix_multiplication_cuda (more legible).
W. Trevor King [Tue, 14 Sep 2010 19:03:04 +0000 (15:03 -0400)]
matmult_cuda -> matrix_multiplication_cuda (more legible).

13 years agoConsolidate Numerical Recipes code into src/NR/.
W. Trevor King [Tue, 14 Sep 2010 19:02:16 +0000 (15:02 -0400)]
Consolidate Numerical Recipes code into src/NR/.

13 years agoDon't version compiled binaries & remove exec permissions from source files.
W. Trevor King [Tue, 14 Sep 2010 18:58:35 +0000 (14:58 -0400)]
Don't version compiled binaries & remove exec permissions from source files.

13 years agoRenamed mandelbrot2/ -> mandelbrot_MPE/ (more descriptive).
W. Trevor King [Tue, 14 Sep 2010 18:48:29 +0000 (14:48 -0400)]
Renamed mandelbrot2/ -> mandelbrot_MPE/ (more descriptive).

13 years agoRemoved src/mandelbrot2-old/ (was indeed an earlier version of mandelbrot2/.
W. Trevor King [Tue, 14 Sep 2010 18:47:58 +0000 (14:47 -0400)]
Removed src/mandelbrot2-old/ (was indeed an earlier version of mandelbrot2/.

13 years agoMore descriptive name "MPE_hello" for old src/fun/.
W. Trevor King [Tue, 14 Sep 2010 18:40:43 +0000 (14:40 -0400)]
More descriptive name "MPE_hello" for old src/fun/.

13 years agoHack merge of diffusion_2d_old?/ and diffusion_2d/.
W. Trevor King [Tue, 14 Sep 2010 18:39:48 +0000 (14:39 -0400)]
Hack merge of diffusion_2d_old?/ and diffusion_2d/.

13 years agoConsolidated visit_writer source into src/visit_writer/.
W. Trevor King [Tue, 14 Sep 2010 18:36:12 +0000 (14:36 -0400)]
Consolidated visit_writer source into src/visit_writer/.

13 years agoMoved all source (that I've found) into src/.
W. Trevor King [Tue, 14 Sep 2010 18:30:21 +0000 (14:30 -0400)]
Moved all source (that I've found) into src/.

13 years agoRemove poisson_2d LaTeX source.
W. Trevor King [Tue, 14 Sep 2010 18:13:50 +0000 (14:13 -0400)]
Remove poisson_2d LaTeX source.

13 years agoMerge branch 'master' of ssh://einstein/~/public_html/code/git/parallel_computing
W. Trevor King [Tue, 14 Sep 2010 17:40:18 +0000 (13:40 -0400)]
Merge branch 'master' of ssh://einstein/~/public_html/code/git/parallel_computing

13 years agoFix html_toc.py issues in logistic_cuda/index.shtml.itex2MML.
W. Trevor King [Tue, 14 Sep 2010 17:39:34 +0000 (13:39 -0400)]
Fix html_toc.py issues in logistic_cuda/index.shtml.itex2MML.

13 years agoImprove html_toc.py parser error messages.
W. Trevor King [Tue, 14 Sep 2010 17:38:29 +0000 (13:38 -0400)]
Improve html_toc.py parser error messages.

13 years agoFix recent (ex PDF) assigment/archive/*.shtml typos.
W. Trevor King [Tue, 14 Sep 2010 17:25:23 +0000 (13:25 -0400)]
Fix recent (ex PDF) assigment/archive/*.shtml typos.

13 years agoAdded .gitignore with *.tar.gz.
W. Trevor King [Tue, 14 Sep 2010 16:51:03 +0000 (12:51 -0400)]
Added .gitignore with *.tar.gz.

13 years agoClean up assignments/archive/least_squares_fitting/.
W. Trevor King [Tue, 14 Sep 2010 16:47:28 +0000 (12:47 -0400)]
Clean up assignments/archive/least_squares_fitting/.

Renamed PDFs to more useful names.  Regenerated
Least_Square_Fit_Linear_Quadratic.pdf (was page2.pdf) from
Least_Square_Fit_Linear_Quadratic.mws source, since the old PDF looked
a bit ratty.

13 years agoRemove least_squares_fitting/PHYS405_PHYS750_405.doc.
W. Trevor King [Tue, 14 Sep 2010 16:28:16 +0000 (12:28 -0400)]
Remove least_squares_fitting/PHYS405_PHYS750_405.doc.

It mirrors least_squares_fitting/index.shtml, but is larger and in a
less readable format.

13 years agoConvert logistic_cude assigment PDFs to XHTML.
W. Trevor King [Tue, 14 Sep 2010 16:21:28 +0000 (12:21 -0400)]
Convert logistic_cude assigment PDFs to XHTML.

13 years agoShoehorn unicode double quotes indo _doc/math.shtml.
W. Trevor King [Tue, 14 Sep 2010 16:21:06 +0000 (12:21 -0400)]
Shoehorn unicode double quotes indo _doc/math.shtml.

13 years agoConvert poisson assigment.pdf to XHTML.
W. Trevor King [Tue, 14 Sep 2010 15:39:13 +0000 (11:39 -0400)]
Convert poisson assigment.pdf to XHTML.

13 years agoConvert game_of_life assigment.pdf to XHTML.
W. Trevor King [Tue, 14 Sep 2010 15:26:17 +0000 (11:26 -0400)]
Convert game_of_life assigment.pdf to XHTML.

13 years agoConvert sorting assigment.pdf to XHTML.
W. Trevor King [Tue, 14 Sep 2010 15:21:15 +0000 (11:21 -0400)]
Convert sorting assigment.pdf to XHTML.

13 years agoConvert submit_command assigment.pdf to XHTML.
W. Trevor King [Tue, 14 Sep 2010 15:08:18 +0000 (11:08 -0400)]
Convert submit_command assigment.pdf to XHTML.

13 years agoConvert tree_broadcast.pdf assigment to XHTML.
W. Trevor King [Tue, 14 Sep 2010 15:03:55 +0000 (11:03 -0400)]
Convert tree_broadcast.pdf assigment to XHTML.

13 years agoRemove extra blank line from diffusion/index.shtml.itex2MML.
W. Trevor King [Tue, 14 Sep 2010 15:03:00 +0000 (11:03 -0400)]
Remove extra blank line from diffusion/index.shtml.itex2MML.

13 years agoConvert monte_carlo_integration.pdf assigment to XHTML.
W. Trevor King [Tue, 14 Sep 2010 14:28:29 +0000 (10:28 -0400)]
Convert monte_carlo_integration.pdf assigment to XHTML.