view grid.jl @ 149:11b6646918d4 parallel_test

Rewrote the test using the @distributed macro instead of spawns. Seems to improve results.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Tue, 26 Feb 2019 11:09:30 +0100
parents 614b56a017b9
children cb9a789338a1
line wrap: on
line source

module Grid

# TODO: Where is this used?
abstract type BoundaryId end

include("AbstractGrid.jl")
include("EquidistantGrid.jl")

end