Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 814dba6

Browse files
author
ariddell
committed
Update Stan source to 2.15.0
Include paths also updated.
1 parent d72da4f commit 814dba6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

pystan/model.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,10 @@ def __init__(self, file=None, charset='utf-8', model_name="anon_model",
245245
lib_dir,
246246
pystan_dir,
247247
os.path.join(pystan_dir, "stan", "src"),
248-
os.path.join(pystan_dir, "stan", "lib", "stan_math"),
249-
os.path.join(pystan_dir, "stan", "lib", "stan_math", "lib", "eigen_3.2.9"),
250-
os.path.join(pystan_dir, "stan", "lib", "stan_math", "lib", "boost_1.62.0"),
251-
os.path.join(pystan_dir, "stan", "lib", "stan_math", "lib", "cvodes_2.9.0", "include"),
248+
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0"),
249+
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0", "lib", "eigen_3.2.9"),
250+
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0", "lib", "boost_1.62.0"),
251+
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0", "lib", "cvodes_2.9.0", "include"),
252252
np.get_include(),
253253
]
254254

pystan/stan

Submodule stan updated 2883 files

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ def find_version(*parts):
9999
from distutils.extension import Extension
100100

101101
stan_include_dirs = ['pystan/stan/src',
102-
'pystan/stan/lib/stan_math/',
103-
'pystan/stan/lib/stan_math/lib/eigen_3.2.9',
104-
'pystan/stan/lib/stan_math/lib/boost_1.62.0',
105-
'pystan/stan/lib/stan_math/lib/cvodes_2.9.0/include']
102+
'pystan/stan/lib/stan_math_2.15.0/',
103+
'pystan/stan/lib/stan_math_2.15.0/lib/eigen_3.2.9',
104+
'pystan/stan/lib/stan_math_2.15.0/lib/boost_1.62.0',
105+
'pystan/stan/lib/stan_math_2.15.0/lib/cvodes_2.9.0/include']
106106
stan_macros = [
107107
('BOOST_RESULT_OF_USE_TR1', None),
108108
('BOOST_NO_DECLTYPE', None),

0 commit comments

Comments
 (0)