Skip to content

Commit

Permalink
[geometric] fix scaleless integral error
Browse files Browse the repository at this point in the history
  • Loading branch information
j-schlenk committed Apr 29, 2024
1 parent b146463 commit 6920b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pySecDec/decomposition/geometric.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def geometric_decomposition(sector, indices=None, normaliz=None, workdir='normal
polytope.complete_representation(normaliz, workdir)

if len(polytope.equations) > 0:
NotImplementedError("Polytope is not full dimensional in geometric_decomposition. Input integral is scaleless.")
raise NotImplementedError("Polytope is not full dimensional in geometric_decomposition. Input integral is scaleless.")

transformation = polytope.facets.T[:-1] # do not need offset term "a_F"
incidence_lists = polytope.vertex_incidence_lists()
Expand Down

0 comments on commit 6920b01

Please sign in to comment.