Skip to content

Commit a9c295f

Browse files
author
Fredrik Jadebeck
committed
Prepare 0.2.0 Release
1 parent cf7c4f8 commit a9c295f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.idea
2+
cmake-build-*
13
build/
24
dist/
35
_build/

Diff for: .gitmodules

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
path = extern/pybind11
33
url = https://github.com/pybind/pybind11.git
44
branch = stable
5-
[submodule "extern/hops"]
6-
path = extern/hops
7-
url = [email protected]:fluxomics/hops.git
85
[submodule "extern/eigen3"]
96
path = extern/eigen3
107
url = https://gitlab.com/libeigen/eigen.git
8+
[submodule "extern/hops"]
9+
path = extern/hops
10+
url = https://github.com/modsim/hops

Diff for: extern/hops

Submodule hops updated 4697 files

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def build_extension(self, ext):
106106
# logic and declaration, and simpler if you include description/version in a file.
107107
setup(
108108
name="hopsy",
109-
version="0.1.2",
109+
version="0.2.0",
110110
author="Richard D. Paul",
111111
author_email="[email protected]",
112112
description="A python interface for hops, the highly optimized polytope sampling toolbox.",

Diff for: src/hopsy.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,6 @@ namespace hopsy {
161161
chainType = hops::MarkovChainType::BallWalk;
162162
} else if (chainTypeString == "CoordinateHitAndRun") {
163163
chainType = hops::MarkovChainType::CoordinateHitAndRun;
164-
} else if (chainTypeString == "CSmMALA") {
165-
chainType = hops::MarkovChainType::CSmMALA;
166164
} else if (chainTypeString == "DikinWalk") {
167165
chainType = hops::MarkovChainType::DikinWalk;
168166
} else if (chainTypeString == "Gaussian") {

0 commit comments

Comments
 (0)