Skip to content

Commit

Permalink
fixed repo name and core file name
Browse files Browse the repository at this point in the history
  • Loading branch information
komahanb committed Jun 20, 2019
1 parent cf8e615 commit 1a9234b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pspace/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .parameters import *
from .core import *
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
setup(
name='pspace',
version='0.1',
description='Polynomial chaos package for stochastic galerkin and collocation methods of uncertainty quantification',
description='Probabilistic space for stochastic galerkin and collocation methods of uncertainty quantification',
long_description=readme,
author='Komahan Boopathy',
author_email='[email protected]',
url='https://github.com/komahanb/pspace',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
packages=find_packages(exclude=('tests', 'docs', 'examples'))
)

2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from pchaos.parameters import *
from pspace.core import *
2 changes: 1 addition & 1 deletion tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import path
sys.path.append( path.dirname( path.dirname( path.abspath(__file__) ) ) )
import numpy as np
from pchaos.parameters import ParameterFactory, ParameterContainer
from pspace.parameters import ParameterFactory, ParameterContainer

if __name__ == '__main__':

Expand Down
4 changes: 2 additions & 2 deletions tests/test_sparsity.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from collections import Counter
from timeit import default_timer as timer

from pchaos.parameters import ParameterFactory, ParameterContainer
from pchaos.plotter import plot_jacobian
from pspace.parameters import ParameterFactory, ParameterContainer
from pspace.plotter import plot_jacobian

## def sparsity(a, b):
## """
Expand Down

0 comments on commit 1a9234b

Please sign in to comment.