Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,6 @@ def _validate_boundary(name: str, value, dim: int):


def _validate_boundary_order(left, right) -> None:
# Scalar 1-D limits retain the signed-integration convention used by the
# circular API. Vector limits describe hyperrectangles and must be ordered.
if ndim(left) == 0 and ndim(right) == 0:
return
if not bool(backend_all(right >= left)):
raise ValueError("integration boundaries must be increasing in every dimension")

Expand Down
Loading