Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-wagner committed Apr 3, 2018
2 parents 52dc18a + bc304c9 commit 5f134d8
Show file tree
Hide file tree
Showing 68 changed files with 851 additions and 2,451 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Files and filetypes exluded from version control
# Python standard taken from https://github.com/github/gitignore/blob/master/Python.gitignore

# Documentation
_build/
_tutorials_auto/
_examples_auto/
_generated/
# sidebar gallery is created on the fly
doc/_templates/gallery.html

# Customizations
*.log
*.pdf
Expand All @@ -14,6 +22,7 @@ command.history
*.vector

# Gmsh
*.geo.*
*.geo
*.msh

Expand Down
10 changes: 6 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,12 @@ function(find_boost_from_distname_file)
endif()
endfunction(find_boost_from_distname_file)

if (NOT WIN32)
set (USE_BOOST_THREAD FALSE)
else()
set (USE_BOOST_THREAD TRUE)
if (NOT USE_BOOST_THREAD)
if (NOT WIN32)
set (USE_BOOST_THREAD FALSE)
else()
set (USE_BOOST_THREAD TRUE)
endif()
endif()

if (USE_BOOST_THREAD)
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ regularization on meshes (1D, 2D, 3D) with regular or irregular arrangement are
available. There is flexible control of all inversion parameters. The default
inversion framework is based on the generalized Gauss-Newton method.

Please see :ref:`inversion tutorial<tut:inversion>` for examples and more
Please see :ref:`tut:inversion` for examples and more
details.

.. _sec:about_gimli_modelling:
Expand All @@ -79,7 +79,7 @@ The modelling capabilities of pyGIMLi inlcude:
* Triangle, Quads, Tetrahedron, Prism and Hexahedron, mixed meshes
* solver for elliptic problems (Helmholtz-type PDE)

Please see :ref:`modelling tutorial<tut:modelling>` for examples and more details.
Please see :ref:`tut:modelling` for examples and more details.

License
-------
Expand Down
2 changes: 1 addition & 1 deletion doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ add_custom_target(sphinxapi
COMMAND
cmake -E copy_if_different ${SPHINX_SRC_DIR}/doc/sidebar_gallery.py ${SPHINX_SRCBUILD_DIR}/doc
COMMAND
sphinx-autogen ${SPHINX_SRC_DIR}/doc/pygimliapi/index.rst -t ${SPHINX_SRC_DIR}/doc/_templates -o ${SPHINX_SRCBUILD_DIR}/doc/pygimliapi/_generated
sphinx-autogen -i ${SPHINX_SRC_DIR}/doc/pygimliapi/index.rst -t ${SPHINX_SRC_DIR}/doc/_templates -o ${SPHINX_SRCBUILD_DIR}/doc/pygimliapi/_generated
COMMENT
"Building pygimli api doc"
DEPENDS
Expand Down
2 changes: 1 addition & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ clean:
rm -f _templates/gallery.html

api:
sphinx-autogen pygimliapi/index.rst -t _templates
sphinx-autogen -i pygimliapi/index.rst -t _templates

gallery:
python3 ./sidebar_gallery.py
Expand Down
112 changes: 0 additions & 112 deletions doc/_sphinx-ext/myexec_directive.py

This file was deleted.

175 changes: 0 additions & 175 deletions doc/_sphinx-ext/myliterate_directive.py

This file was deleted.

Loading

0 comments on commit 5f134d8

Please sign in to comment.