Skip to content

Commit

Permalink
fix: fold cg
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan Grose committed Jul 11, 2022
1 parent 5ffef3b commit a35f41a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion LoopStructural/interpolators/_discrete_fold_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
try:
from ._cython.dsi_helper import fold_cg
except:
raise ImportError("Cython compiled code not found")
from ._python.dsi_helper import fold_cg

logger.warning("Cython compiled code not found, using python version")


class DiscreteFoldInterpolator(PiecewiseLinearInterpolator):
Expand Down

0 comments on commit a35f41a

Please sign in to comment.