File tree Expand file tree Collapse file tree 7 files changed +12
-9
lines changed
playgrounds/deprecated/advection_1d_implicit Expand file tree Collapse file tree 7 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ before_install:
2626install :
2727 # this line needs to be updated to match the requirements.txt files
2828 # the conda installer isn't able to process PIP's requirements.txt files
29- - conda install --yes python=${TRAVIS_PYTHON_VERSION} numpy future scipy matplotlib nose sphinx pep8 coverage mpi4py
29+ - conda install --yes python=${TRAVIS_PYTHON_VERSION} numpy future scipy matplotlib nose sphinx pep8 coverage mpi4py sympy
3030 - conda list
3131 - pip install --user coloredlogs
3232 - pip install --user travis-sphinx
Original file line number Diff line number Diff line change 44import scipy .sparse as sp
55import scipy .sparse .linalg as LA
66
7- from examples .advection_1d_implicit .getFDMatrix import getFDMatrix
8- from pySDC .implementations .datatype_classes import mesh
7+ from playgrounds .deprecated .advection_1d_implicit .getFDMatrix import getFDMatrix
98from pySDC .core .Problem import ptype
9+ from pySDC .implementations .datatype_classes import mesh
1010
1111
1212class advection (ptype ):
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 11import numpy as np
22import pySDC .core .deprecated .PFASST_stepwise as mp
3-
4- from examples .advection_1d_implicit .ProblemClass import advection
53from examples .advection_1d_implicit .TransferClass import mesh_to_mesh_1d_periodic
6- from pySDC . implementations . datatype_classes import mesh
7- from pySDC . implementations . sweeper_classes . generic_LU import generic_LU
4+
5+ from playgrounds . deprecated . advection_1d_implicit . ProblemClass import advection
86from pySDC .core import CollocationClasses as collclass
97from pySDC .core import Log
8+ from pySDC .implementations .datatype_classes import mesh
9+ from pySDC .implementations .sweeper_classes .generic_LU import generic_LU
1010
1111if __name__ == "__main__" :
1212
Original file line number Diff line number Diff line change 1+ import math
2+
13import numpy as np
2- from examples .advection_1d_implicit .getFDMatrix import getFDMatrix
34import numpy .linalg as LA
4- import math
55from matplotlib import pyplot as plt
66
7+ from playgrounds .deprecated .advection_1d_implicit .getFDMatrix import getFDMatrix
8+
9+
710def u_function (x ):
811 u = np .zeros (np .size (x ))
912 for i in range (0 ,np .size (x )):
You can’t perform that action at this time.
0 commit comments