Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
dfc4edf
trying mkdocs stuff on master branch as readthedocs seems to have tro…
HomerReid Jun 3, 2017
59dface
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jun 10, 2017
59b2315
synced with stevengj/master
HomerReid Jun 10, 2017
7b4a40a
sync with stevenj master
HomerReid Jun 11, 2017
73c728a
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jun 16, 2017
eb70f1d
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jun 18, 2017
2661470
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jul 6, 2017
6b81dd9
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jul 17, 2017
d6a1c33
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jul 27, 2017
bcaec1e
updates
HomerReid Jul 27, 2017
d3e57d5
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jul 28, 2017
9db22ba
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Jul 28, 2017
25f1abd
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Aug 3, 2017
62b6020
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Aug 8, 2017
49d7b20
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Aug 14, 2017
0f9293b
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Aug 14, 2017
47090d5
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Aug 16, 2017
3348c4a
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Aug 20, 2017
0a395dc
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Sep 7, 2017
c68d2d7
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Sep 21, 2017
bdb08d9
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Sep 24, 2017
82893b7
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Sep 29, 2017
a81e02f
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Sep 29, 2017
6e4baa9
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Oct 5, 2017
4e7ef9c
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Oct 12, 2017
4463f88
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Oct 16, 2017
8567a05
Merge branch 'master' of https://github.com/StevenGJ/meep
HomerReid Oct 19, 2017
529207f
remove unnecessary libhdf5-serial-dev package from .travis build; res…
HomerReid Oct 19, 2017
ffef675
restored libhdf5-dev to package prerequisites (still omitting libhdf5…
HomerReid Oct 19, 2017
bd54090
updates
HomerReid Oct 19, 2017
9915bd5
updates
HomerReid Oct 19, 2017
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ addons:
- libgsl0-dev
- libfftw3-dev
- gfortran
- libhdf5-serial-dev
- liblapack-dev
- swig
- libhdf5-serial-dev
- libopenmpi-dev
- mpi-default-bin
- openmpi-bin
Expand Down
2 changes: 2 additions & 0 deletions libmeepgeom/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ array_slice_ll_LDADD = libmeepgeom.la $(MEEPLIBS)

TESTS = cyl-ellipsoid-ll array-slice-ll

#LOG_COMPILER = $(RUNCODE)

noinst_PROGRAMS = bend-flux-ll

bend_flux_ll_SOURCES = bend-flux-ll.cpp
Expand Down
11 changes: 9 additions & 2 deletions python/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ _meep_la_LIBADD = $(top_builddir)/src/libmeep@MEEP_SUFFIX@.la $(top_builddir)/li
_meep_la_LDFLAGS = -module -version-info @SHARED_VERSION_INFO@
_meep_la_CPPFLAGS = $(PYTHON_INCLUDES) $(AM_CPPFLAGS)

# material_dispersion.py test must be excluded from test suite for MPI build
if WITH_MPI
MDPYTEST=
else
MDPYTEST=$(TEST_DIR)/material_dispersion.py
endif

TEST_DIR = tests
TESTS = \
$(TEST_DIR)/3rd_harm_1d.py \
Expand All @@ -29,14 +36,14 @@ TESTS = \
$(TEST_DIR)/geom.py \
$(TEST_DIR)/holey_wvg_bands.py \
$(TEST_DIR)/holey_wvg_cavity.py \
$(TEST_DIR)/material_dispersion.py \
$(MDPYTEST) \
$(TEST_DIR)/physical.py \
$(TEST_DIR)/ring.py \
$(TEST_DIR)/simulation.py \
$(TEST_DIR)/source.py

TEST_EXTENSIONS = .py
PY_LOG_COMPILER = $(PYTHON)
PY_LOG_COMPILER = $(RUNCODE) $(PYTHON)
TESTS_ENVIRONMENT = export PYTHONPATH=$(abs_top_builddir)/python:$$PYTHONPATH;

if WITH_PYTHON
Expand Down