Skip to content

Commit 9dd10a1

Browse files
committed
Fixing small bug in the distance_boundaries_checks
1 parent bd3146c commit 9dd10a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

deism/data_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def distance_boundaries_checks(params):
142142
print("[Warning] Source is on the boundaries or outside of the room!")
143143
if (
144144
rec_x <= 0
145-
or rec_x >= room_y
145+
or rec_x >= room_x
146146
or rec_y <= 0
147147
or rec_y >= room_y
148148
or rec_z <= 0

deism/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# deism/version.py
2-
__version__ = "2.2.1.6" # Update this for new versions
2+
__version__ = "2.2.1.7" # Update this for new versions

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def clean(self):
307307
description="An image source-based method used to simulate room transfer functions for arbitrary room shapes.",
308308
long_description=open("README.md", encoding="utf-8").read(),
309309
long_description_content_type="text/markdown",
310-
author="Zeyu Xu, Songjiang Tan",
310+
author="Zeyu Xu",
311311
author_email="zeyu.xu@audiolabs-erlangen.de",
312312
url="https://github.com/audiolabs/DEISM",
313313
# license="MIT", !!! Todo: add license

0 commit comments

Comments
 (0)